18 lines
524 B
C#
18 lines
524 B
C#
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<string> Errors { get; set; } = new List<string>();
|
|
public List<InventorySummary> InsertedItems { get; set; } = new List<InventorySummary>();
|
|
}
|
|
}
|