using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace EMIS.ViewModel { public class ExcelImportResult { /// /// /// public ExcelImportResult() { IsAllSuccess = true; } /// /// /// public bool IsAllSuccess { get; set; } /// /// /// public int SuccessCount { get; set; } /// /// /// public int ErrorCount { get; set; } /// /// /// public string Message { get; set; } /// /// /// public string ErrorFilePath { get; set; } /// /// /// public object Data { get; set; } } }