namespace TaxBaik.Domain.Entities; public class Announcement { public int Id { get; set; } public string Title { get; set; } = null!; public string? Content { get; set; } public string DisplayType { get; set; } = "info"; public bool IsActive { get; set; } public DateTime? StartsAt { get; set; } public DateTime? EndsAt { get; set; } public int SortOrder { get; set; } public DateTime CreatedAt { get; set; } public DateTime UpdatedAt { get; set; } }