using CsvHelper.Configuration.Attributes; namespace RhSolutions.SkuParser.Models; public class ProductQuantity { [Index(0)] public required Product Product { get; set; } [Index(1)] public required double Quantity { get; set; } }