12 lines
235 B
C#
12 lines
235 B
C#
|
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; }
|
||
|
}
|