file-storage/FileStorageService.www/Models/NewFileModel.cs

14 lines
242 B
C#

using System.ComponentModel.DataAnnotations;
namespace FileStorageService.www.Models;
public class NewFileModel
{
[MinLength(4)]
[Required]
public string Name { get; init; }
[Required]
public IFormFile FileContents { get; init; }
}