LSFE/LSFE.Infrastructure/Model/ExcelUploadResponse.cs
2026-07-30 10:31:04 +08:00

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>();
}
}