11 lines
264 B
C#
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
|
|
{
|
|
} |