namespace TaxBaik.Domain.Entities; public class Company { public int Id { get; set; } public string CompanyCode { get; set; } = ""; public string CompanyName { get; set; } = ""; public string? ContactPerson { get; set; } public string? Phone { get; set; } public string? Email { get; set; } public string? Memo { get; set; } public bool IsActive { get; set; } = true; public DateTime CreatedAt { get; set; } public DateTime UpdatedAt { get; set; } }