Files
Backend-Api/CompanyManagment.App.Contracts/Workshop/TakePictureModel.cs

30 lines
962 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using CompanyManagment.App.Contracts.CustomizeWorkshopSettings;
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 string Pic1 { get; set; }
public string Pic2 { get; set; }
public bool HasPicture { get; set; }
public long WorkshopGroupSettingsId { get; set; }
public CustomizeWorkshopSettingsViewModel GroupSettings { get; set; }
public CustomizeWorkshopEmployeeSettingsViewModel EmployeeSettings { get; set; }
public string FirstNickName { get; set; }
public string LastNickName { get; set; }
public bool HasUploadedImage { get; set; }
}
}