yavsc/yavscModel/WorkFlow/Writting.cs
Paul Schneider 07be6f2928 * Tags and files for posts and writtings
* TryAssert(Title ~ H1)
2014-09-24 16:19:23 +02:00

14 lines
274 B
C#

using System;
namespace yavscModel.WorkFlow
{
public class Writting
{
public long Id { get; set; }
public decimal UnitaryCost { get; set; }
public int Count { get; set; }
public long ProductReference { get; set; }
public string Description { get; set; }
}
}