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 DisciplineInvestigateRelevant_Doc : EntityBase { [Required, Comment("อ้างอิงรหัสเอกสาร")] public Document Document { get; set; } [Required, Comment("อ้างอิงเรื่องสืบสวน")] public DisciplineInvestigate DisciplineInvestigate { get; set; } } }