Files
Backend-Api/CompanyManagment.App.Contracts/Workshop/TakePictureModel.cs
2024-08-24 19:13:34 +03:30

19 lines
481 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Http;
namespace CompanyManagment.App.Contracts.Workshop
{
public class TakePictureModel
{
public long WorkshopId { get; set; }
public long EmployeeId { get; set; }
public string Name { get; set; }
public IFormFile ProfilePhoto { get; set; }
public bool HasPicture { get; set; }
}
}