14 lines
464 B
C#
14 lines
464 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using BMA.EHR.Report.Service.Models;
|
|
|
|
namespace BMA.EHR.Profile.Service.Models.HR
|
|
{
|
|
public class ProfileChildrenHistory : EntityBase
|
|
{
|
|
public Guid? ChildrenPrefixId { get; set; }
|
|
public string? ChildrenPrefix { get; set; }
|
|
public string? ChildrenFirstName { get; set; }
|
|
public string? ChildrenLastName { get; set; }
|
|
public string? ChildrenCareer { get; set; }
|
|
}
|
|
}
|