26 lines
578 B
C#
26 lines
578 B
C#
using System.Collections.Generic;
|
|
|
|
namespace CompanyManagment.App.Contracts.Employee.DTO;
|
|
|
|
/// <summary>
|
|
/// ایجاد ترک کار از کلاینت
|
|
/// api
|
|
/// </summary>
|
|
public class CreateLeftWorkTempDtoClient
|
|
{
|
|
/// <summary>
|
|
/// آی دی پرسنل
|
|
/// </summary>
|
|
public long EmployeeId { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// تاریخ ترک کار
|
|
/// </summary>
|
|
public string LeftWorkTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// تاریخ آخرین روز کاری
|
|
/// </summary>
|
|
public string LastDayStanding { get; set; }
|
|
} |