Files
taxbaik/TaxBaik.Domain/Entities/CommonCode.cs
T
kjh2064 967a784d6e
TaxBaik CI/CD / build-and-deploy (push) Successful in 1m48s
feat: implement database-driven Common Code system for admin comboboxes
2026-06-30 22:24:04 +09:00

11 lines
323 B
C#

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;
}