namespace TaxBaik.Domain.Entities; public class CommonCode { public string CodeGroup { get; set; } = string.Empty; public string CodeValue { get; set; } = string.Empty; public string CodeName { get; set; } = string.Empty; public int SortOrder { get; set; } public bool IsActive { get; set; } = true; }