This commit is contained in:
2020-06-09 22:34:52 +00:00
parent 9fed178542
commit 1406e5cdc9
6 changed files with 27 additions and 12 deletions

View File

@@ -1,11 +1,15 @@
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
using Newtonsoft.Json;
namespace rockfishCore.Models
{
public partial class Purchase
{
public Purchase()
{
Quantity = 1;
VendorName="ShareIT";
ExpireDate=Util.DateUtil.DateToEpoch(System.DateTime.Today.AddYears(1));
}
public long Id { get; set; }
public long CustomerId { get; set; }
public long SiteId { get; set; }