19 lines
481 B
C#
19 lines
481 B
C#
using Microsoft.AspNetCore.Http;
|
|
|
|
namespace CompanyManagment.App.Contracts.EmployeeDocuments
|
|
{
|
|
|
|
/// <summary>
|
|
/// برای آپلود عکس مدارک
|
|
/// </summary>
|
|
public class AddEmployeeDocumentItem
|
|
{
|
|
public long EmployeeId { get; set; }
|
|
public long WorkshopId { get; set; }
|
|
public IFormFile PictureFile { get; set; }
|
|
public DocumentItemLabel Label { get; set; }
|
|
public bool WithoutPicture { get; set; }
|
|
}
|
|
|
|
}
|