Files
Backend-Api/CompanyManagment.App.Contracts/EmployeeChildren/EmployeeChildernViewModel.cs
2024-07-05 21:36:15 +03:30

11 lines
352 B
C#

namespace CompanyManagment.App.Contracts.EmployeeChildren;
public class EmployeeChildernViewModel
{
public long Id { get; set; }
public string FName { get; set; }
public string DateOfBirth { get; set; }
public string ParentNationalCode { get; set; }
public long EmployeeId { get; set; }
public bool IsRemoved { get; set; }
}