19 lines
658 B
C#
19 lines
658 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace BMA.EHR.Recurit.Exam.Service.Models
|
|
{
|
|
public class District : EntityBase
|
|
{
|
|
[Required, MaxLength(150), Column(Order = 1), Comment("เขต/อำเภอ")]
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
[Column(Order = 2), Comment("สถานะการใช้งาน")]
|
|
public bool IsActive { get; set; } = true;
|
|
|
|
public virtual List<SubDistrict> SubDistricts { get; set; } = new();
|
|
|
|
public virtual Province? Province { get; set; }
|
|
}
|
|
}
|