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; } } }