2016-05-17 18:22:18 +02:00
|
|
|
|
2016-06-14 03:37:57 +02:00
|
|
|
namespace Yavsc.Models.Billing
|
2016-05-17 18:22:18 +02:00
|
|
|
{
|
|
|
|
|
public partial class writtings
|
|
|
|
|
{
|
|
|
|
|
public long _id { get; set; }
|
|
|
|
|
public int? count { get; set; }
|
|
|
|
|
public string description { get; set; }
|
|
|
|
|
public long estimid { get; set; }
|
|
|
|
|
public string productid { get; set; }
|
|
|
|
|
public decimal? ucost { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|