using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LSFE.Infrastructure.Model { public class ExcelUploadResponse : Response { public int TotalRows { get; set; } public int ProcessedRows { get; set; } public int SkippedRows { get; set; } public List Errors { get; set; } = new List(); public List InsertedItems { get; set; } = new List(); } }