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_History : EntityBase { [Required, Comment("สถานะอุทธรณ์/ร้องทุกข์")] public string Status { get; set; } = string.Empty; [Required, Comment("อ้างอิงเรื่องอุทธรณ์/ร้องทุกข์")] public DisciplineComplaint_Appeal DisciplineComplaint_Appeal { get; set; } } }