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

16 lines
No EOL
494 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using BMA.EHR.Domain.Models.Base;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Domain.Models.HR
{
public class ProfileEmploymentHistory : EntityBase
{
[Comment("คำสั่ง")]
public string? Command { get; set; }
[Comment("วันที่จ้าง")]
public DateTime? Date { get; set; }
public virtual ProfileEmployment? ProfileEmployment { get; set; }
}
}