SPMS_API/SPMS.Domain/Entities/Faq.cs

17 lines
497 B
C#

namespace SPMS.Domain.Entities;
public class Faq : BaseEntity
{
public long ServiceId { get; set; }
public string? Category { get; set; }
public string Question { get; set; } = string.Empty;
public string Answer { get; set; } = string.Empty;
public int SortOrder { get; set; }
public bool IsActive { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime? UpdatedAt { get; set; }
// Navigation
public Service Service { get; set; } = null!;
}