using Microsoft.AspNetCore.Http; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace CoviDok.Api.Request { public class ImagePost { public string SessionID { get; set; } public IFormFile File { get; set; } } }