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

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