Files
yavsc/yavscModel/WorkFlow/Writting.cs
Paul Schneider 8fee293665 * style.css:
* UserPost.aspx:
* Estimate.cs:
* Writting.cs:
* WorkFlowController.cs:
* NpgsqlContentProvider.cs: 
* FrontOfficeApiController.cs: Fixed the GetEstimate function,
  refactoring
2014-09-23 12:25:41 +02:00

14 lines
243 B
C#

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