19 lines
481 B
C#
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; }
|
|
}
|
|
}
|