phronCare/Domain/Dtos/Stock/ProductImportResultDto.cs

10 lines
220 B
C#
Raw Normal View History

2025-07-14 16:16:05 -03:00
namespace Domain.Dtos.Stock
{
public class ProductImportResultDto
{
public int Inserted { get; set; }
public int Skipped { get; set; }
public List<string>? Errors { get; set; }
}
}