Files
yavsc/BookAStar/BookAStar/Model/Workflow/CommandLine.cs
2016-09-10 00:53:08 +02:00

14 lines
303 B
C#

namespace BookAStar.Model.Workflow
{
public class CommandLine
{
public long Id { get; set; }
public string Comment { get; set; }
public BaseProduct Article { get; set; }
public int Count { get; set; }
public decimal UnitaryCost { get; set; }
}
}