Files
Thanakarn Klangkasame 1e636aa3d5 [Add] MasterData Services.
2025-11-26 10:29:56 +07:00

11 lines
264 B
C#

namespace AMREZ.EOP.Domain.Entities.MasterData;
public class Province : MasterBase
{
public string Code { get; set; } = null!;
public ICollection<District> Districts { get; set; } = new List<District>();
}
public class ProvinceBlock : MasterBlockBase
{
}