yavsc/yavscModel/WorkFlow/Writting.cs

15 lines
275 B
C#

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