hrms-api-backend/BMA.EHR.Domain/Models/Discipline/DisciplineComplaint_Appeal_Doc.cs
2023-12-13 10:40:59 +07:00

16 lines
668 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 DisciplineComplaint_Appeal_Doc : EntityBase
{
[Required, Comment("อ้างอิงรหัสเอกสาร")]
public Document Document { get; set; }
[Required, Comment("อ้างอิงเรื่องอุทธรณ์/ร้องทุกข์")]
public DisciplineComplaint_Appeal DisciplineComplaint_Appeal { get; set; }
}
}