hrms-api-backend/BMA.EHR.Domain/Models/HR/ProfileOtherHistory.cs
Suphonchai Phoonsawat a0b3b13074 Add MetaData Table From ExistData
Change to use MySQL
2023-06-26 14:02:04 +07:00

17 lines
532 B
C#

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