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

15 lines
464 B
C#
Raw Permalink Normal View History

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; }
}
}