namespace TaxBaik.Domain.Entities; public class RevenueTracking { public int Id { get; set; } public int ClientId { get; set; } public string InvoiceNumber { get; set; } = ""; public DateTime InvoiceDate { get; set; } public string? ServiceType { get; set; } public decimal Amount { get; set; } public string PaymentStatus { get; set; } = "pending"; public DateTime? PaymentDate { get; set; } public DateTime? DueDate { get; set; } public string? Notes { get; set; } public DateTime CreatedAt { get; set; } public DateTime UpdatedAt { get; set; } }