18 lines
544 B
C#
18 lines
544 B
C#
namespace CompanyManagment.App.Contracts.Employee.DTO;
|
|
|
|
/// <summary>
|
|
/// پرسنل هایی که درسمت ادمین شروع به کار کرده اند
|
|
/// </summary>
|
|
public class ClientStartedWorkEmployeesDto
|
|
{
|
|
public long EmployeeId { get; set; }
|
|
|
|
public long WorkshopId { get; set; }
|
|
|
|
public string EmployeeName { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// آیا آپلود مدارک اصلی رو انجام داده یا نه
|
|
/// </summary>
|
|
public bool HasCompleteEmployeeDocument { get; set; }
|
|
} |