15 lines
462 B
C#
15 lines
462 B
C#
using System;
|
|
|
|
namespace CompanyManagment.App.Contracts.EmployeeClientTemp;
|
|
|
|
public class CreateEmployeeClientTemp
|
|
{
|
|
public string FName { get; set; }
|
|
public string LName { get; set; }
|
|
public string NationalCode { get; set; }
|
|
public string Nationality { get; set; }
|
|
public string MaritalStatus { get; set; }
|
|
public long WorkshopId { get; set; }
|
|
public long EmployeeId { get; set; }
|
|
public DateTime StartWorkTime { get; set; }
|
|
} |