hrms-api-report-v1/Models/HR/ProfileOtherHistory.cs

14 lines
406 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using BMA.EHR.Report.Service.Models;
namespace BMA.EHR.Profile.Service.Models.HR
{
public class ProfileOtherHistory : EntityBase
{
public DateTime? Date { get; set; }
public string? Detail { get; set; }
public ProfileOther? ProfileOther { get; set; }
}
}