| 12345678910111213141516171819202122 |
- 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
- /// <summary>
- /// The import file
- /// </summary>
- [Display(Name = "Importdatei")]
- public IFormFile ImportFile { get; set; }
- #endregion
- }
- }
|