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