yavsc/yavscModel/WorkFlow/Writting.cs

15 lines
275 B
C#

using System;
namespace Yavsc.Model.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; }
}
}