namespace TaxBaik.Domain.Entities; public class Faq { public int Id { get; set; } public string Question { get; set; } = null!; public string Answer { get; set; } = null!; public string? Category { get; set; } public int SortOrder { get; set; } public bool IsActive { get; set; } = true; public DateTime CreatedAt { get; set; } public DateTime UpdatedAt { get; set; } }