hrms-api-backend/BMA.EHR.Domain/Models/Discipline/DisciplineInvestigate_Director.cs
2023-11-24 15:28:04 +07:00

16 lines
650 B
C#

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using BMA.EHR.Domain.Models.Base;
using BMA.EHR.Domain.Models.Organizations;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Domain.Models.Discipline
{
public class DisciplineInvestigate_Director : EntityBase
{
[Required, Comment("อ้างอิงรหัสกรรมการ")]
public DisciplineDirector DisciplineDirector { get; set; }
[Required, Comment("อ้างอิงเรื่องสืบสวน")]
public DisciplineInvestigate DisciplineInvestigate { get; set; }
}
}