ExcelImportResult.cs 527 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace EMIS.ViewModel
  6. {
  7. public class ExcelImportResult
  8. {
  9. public ExcelImportResult()
  10. {
  11. IsAllSuccess = true;
  12. }
  13. public bool IsAllSuccess { get; set; }
  14. public int SuccessCount { get; set; }
  15. public int ErrorCount { get; set; }
  16. public string Message { get; set; }
  17. public string ErrorFilePath { get; set; }
  18. public object Data { get; set; }
  19. }
  20. }