15 lines
508 B
C#
15 lines
508 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 ProfileOther : EntityBase
|
|
{
|
|
public DateTime? Date { get; set; }
|
|
public string? Detail { get; set; }
|
|
public virtual List<ProfileOtherHistory> ProfileOtherHistorys { get; set; } = new List<ProfileOtherHistory>();
|
|
public Profile? Profile { get; set; }
|
|
}
|
|
}
|