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