14 lines
406 B
C#
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; }
|
|
}
|
|
}
|