26 lines
623 B
C#
26 lines
623 B
C#
namespace CompanyManagment.App.Contracts.Employee.DTO;
|
|
|
|
public class GetLeftWorkTempDayOfWeekDtoClient
|
|
{
|
|
/// <summary>
|
|
/// تاریخ ترک کار
|
|
/// </summary>
|
|
public string LeftWorkTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// آخرین روز کاری
|
|
/// </summary>
|
|
public string LastDayStanding { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// روز هفته ترک کار
|
|
/// </summary>
|
|
public string LeftWorkTimeDayOfWeek { get; set; }
|
|
|
|
/// <summary>
|
|
/// روز هفته اخرین روز کاری
|
|
/// </summary>
|
|
public string LastDayStandingDayOfWeek { get; set; }
|
|
}
|