using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using BMA.EHR.Domain.Models.Base; using Microsoft.EntityFrameworkCore; namespace BMA.EHR.Domain.Models.HR { public class ProfileOther : EntityBase { [Comment("วันที่")] public DateTime? Date { get; set; } [Comment("รายละเอียด")] public string? Detail { get; set; } public virtual List ProfileOtherHistorys { get; set; } = new List(); public Profile? Profile { get; set; } } }