hrms-api-backend/BMA.EHR.Domain/Models/Discipline/DisciplineInvestigate_Director.cs

17 lines
659 B
C#
Raw Normal View History

2023-11-23 19:59:24 +07:00
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; }
}
}