yavsc/yavscModel/WorkFlow/Writting.cs

14 lines
275 B
C#
Raw Normal View History

2014-07-16 20:35:03 +02:00
using System;
2014-10-06 04:58:47 +02:00
namespace Yavsc.Model.WorkFlow
2014-07-16 20:35:03 +02:00
{
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; }
}
}