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

18 lines
523 B
C#
Raw Normal View History

using System;
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using BMA.EHR.Domain.Models.Base;
2023-06-26 15:18:39 +07:00
namespace BMA.EHR.Domain.Models.HR
{
public class ProfileOtherHistory : EntityBase
{
[Comment("วันที่")]
public DateTime? Date { get; set; }
[Comment("รายละเอียด")]
public string? Detail { get; set; }
public ProfileOther? ProfileOther { get; set; }
}
}