namespace TaxBaik.Domain.Entities; public class TaxFilingSchedule { public int Id { get; set; } public int ClientId { get; set; } public string FilingType { get; set; } = ""; public DateTime DueDate { get; set; } public int FilingYear { get; set; } public string Status { get; set; } = "pending"; public int? AssignedToId { get; set; } public DateTime? CompletedDate { get; set; } public string? Notes { get; set; } public DateTime CreatedAt { get; set; } public DateTime UpdatedAt { get; set; } }