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