namespace TaxBaik.Domain.Entities; public class Client { public int Id { get; set; } public string Name { get; set; } = null!; public string? CompanyName { get; set; } public string? Phone { get; set; } public string? Email { get; set; } public string? ServiceType { get; set; } public string? TaxType { get; set; } public string Status { get; set; } = "active"; public string? Source { get; set; } public string? Memo { get; set; } public DateTime CreatedAt { get; set; } public DateTime UpdatedAt { get; set; } }