mirror of
https://github.com/volodymyrsmirnov/MalwareMultiScan.git
synced 2025-08-24 13:32:22 +00:00
11 lines
254 B
C#
11 lines
254 B
C#
|
using System.ComponentModel.DataAnnotations;
|
||
|
using Microsoft.AspNetCore.Http;
|
||
|
|
||
|
namespace MalwareMultiScan.Shared.Data.Requests
|
||
|
{
|
||
|
public class FileRequest : BasicRequest
|
||
|
{
|
||
|
[Required]
|
||
|
public IFormFile InputFile { get; set; }
|
||
|
}
|
||
|
}
|