Files
Backend-Api/CompanyManagment.App.Contracts/EmployeeDocuments/AddEmployeeDocumentItem.cs
2025-04-30 19:51:19 +03:30

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; }
}
}