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

16 lines
No EOL
467 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 ProfileEmployment : EntityBase
{
[Comment("คำสั่ง")]
public string? Command { get; set; }
[Comment("วันที่จ้าง")]
public DateTime? Date { get; set; }
public virtual Profile? Profile { get; set; }
}
}