yavsc/yavscModel/WorkFlow/Writting.cs

13 lines
245 B
C#
Raw Normal View History

2014-07-16 20:35:03 +02:00
using System;
namespace yavscModel.WorkFlow
{
public class Writting
{
public decimal UnitaryCost { get; set; }
public int Count { get; set; }
public string ProductReference { get; set; }
public string Description { get; set; }
}
}