blob: 39ae260c8317d365c3f9d0e30ac5c6d6e102c8d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
using CsvHelper.Configuration.Attributes;
namespace RhSolutions.SkuParser.Models;
public record SkuQuantity
{
[Index(0)]
public required string Sku { get; set; }
[Index(1)]
public required double Quantity { get; set; }
}
|