ImportModel.cs 488 B

12345678910111213141516171819202122
  1. using Microsoft.AspNetCore.Http;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.Linq;
  6. using System.Threading.Tasks;
  7. namespace GreenTree.Strohrmann.ERP.Web.Models.Import
  8. {
  9. public class ImportModel
  10. {
  11. #region Properties
  12. /// <summary>
  13. /// The import file
  14. /// </summary>
  15. [Display(Name = "Importdatei")]
  16. public IFormFile ImportFile { get; set; }
  17. #endregion
  18. }
  19. }