hrms-api-backend/BMA.EHR.Domain/Models/HR/ProfileNopaidHistory.cs

19 lines
604 B
C#
Raw Permalink Normal View History

using System;
using System.ComponentModel.DataAnnotations;
using BMA.EHR.Domain.Models.Base;
using Microsoft.EntityFrameworkCore;
2023-06-26 15:18:39 +07:00
namespace BMA.EHR.Domain.Models.HR
{
public class ProfileNopaidHistory : EntityBase
{
[Comment("วัน เดือน ปี")]
public DateTime? Date { get; set; }
[Comment("รายละเอียด")]
public string? Detail { get; set; }
[Comment("เอกสารอ้างอิง")]
public string? Reference { get; set; }
public virtual ProfileNopaid? ProfileNopaid { get; set; }
}
}