This commit is contained in:
2022-08-29 00:44:51 +00:00
parent c2cf61c4ce
commit 6318631014
7 changed files with 122 additions and 28 deletions

View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
namespace rockfishCore.Models
{
public partial class VendorNotification
{
public VendorNotification()
{
DtCreated = Util.DateUtil.NowAsEpoch();
}
public long Id { get; set; }
public long DtCreated { get; set; }
public string Vendor { get; set; }
public string Data { get; set; }
public long? DtProcessed { get; set; }
public bool Processed { get; set; }
}
}