OD.WebApplication/OD.WebApplication/Models/HomeViewModel.cs

13 lines
288 B
C#

using System.ComponentModel.DataAnnotations;
using System.IO;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.FileProviders;
namespace OD.WebApplication.Models
{
public class HomeViewModel
{
[Required]
public IFormFile FileAttach { get; set; }
}
}