yavsc/yavscModel/WorkFlow/Writting.cs

14 lines
274 B
C#
Raw Normal View History

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