using Microsoft.AspNetCore.Http; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Threading.Tasks; namespace GreenTree.Strohrmann.ERP.Web.Models.Import { public class ImportModel { #region Properties /// /// The import file /// [Display(Name = "Importdatei")] public IFormFile ImportFile { get; set; } #endregion } }