15 lines
412 B
C#
15 lines
412 B
C#
|
|
using System;
|
|||
|
|
using System.ComponentModel.DataAnnotations;
|
|||
|
|
using BMA.EHR.Report.Service.Models;
|
|||
|
|
|
|||
|
|
namespace BMA.EHR.Profile.Service.Models.HR
|
|||
|
|
{
|
|||
|
|
public class ProfileNopaidHistory : EntityBase
|
|||
|
|
{
|
|||
|
|
public DateTime? Date { get; set; }
|
|||
|
|
public string? Detail { get; set; }
|
|||
|
|
public string? Reference { get; set; }
|
|||
|
|
public virtual ProfileNopaid? ProfileNopaid { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|