15 lines
321 B
C#
15 lines
321 B
C#
namespace CompanyManagment.App.Contracts.EmployeeDocuments
|
|
{
|
|
|
|
/// <summary>
|
|
/// برای ایجاد مجموعه برای مدارک پرسنل
|
|
/// </summary>
|
|
public class CreateEmployeeDocuments
|
|
{
|
|
public long EmployeeId { get; set; }
|
|
public long WorkshopId { get; set; }
|
|
}
|
|
|
|
|
|
}
|