phronCare/Domain/Dtos/Stock/ProductImportResultDto.cs
Leandro Hernan Rojas 369190695b
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 26m25s
Add Massive Import Products
2025-07-14 16:16:05 -03:00

10 lines
220 B
C#

namespace Domain.Dtos.Stock
{
public class ProductImportResultDto
{
public int Inserted { get; set; }
public int Skipped { get; set; }
public List<string>? Errors { get; set; }
}
}