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

27 lines
716 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CompanyManagment.App.Contracts.InsuranceEmployeeInfo;
public class InsuranceEmployeeInfoViewModel
{
public long EmployeeId { get; set; }
public string FName { get; set; }
public string LName { get; set; }
public string FatherName { get; set; }
public DateTime DateOfBirth { get; set; }
public DateTime DateOfIssue { get; set; }
public string PlaceOfIssue { get; set; }
public string NationalCode { get; set; }
public string IdNumber { get; set; }
public string Gender { get; set; }
public string InsuranceCode { get; set; }
}