This commit is contained in:
21
Models/VendorNotification.cs
Normal file
21
Models/VendorNotification.cs
Normal 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; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user