yavsc/yavscModel/WorkFlow/Writting.cs

14 lines
243 B
C#

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