hrms-api-exam/Models/Disable/DisableCertificate.cs

20 lines
463 B
C#
Raw Permalink Normal View History

2023-04-29 10:26:03 +07:00
using System.ComponentModel.DataAnnotations;
namespace BMA.EHR.Recurit.Exam.Service.Models.Disables
{
public class DisableCertificate : EntityBase
{
[MaxLength(50)]
public string CertificateNo { get; set; }
[MaxLength(200)]
public string Description { get; set; }
public DateTime IssueDate { get; set; }
public DateTime ExpiredDate { get; set; }
public Disable Disable { get; set; }
}
}