All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 26m25s
10 lines
220 B
C#
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; }
|
|
}
|
|
}
|