namespace TaxBaik.Application.DTOs; public class AnnouncementDto { public int Id { get; set; } public string Title { get; set; } = ""; public string? Content { get; set; } public string DisplayType { get; set; } = "info"; public bool IsActive { get; set; } = true; public DateTime? StartsAt { get; set; } public DateTime? EndsAt { get; set; } public int SortOrder { get; set; } }