Files
rockfish/Models/VendorNotification.cs
2022-08-29 00:44:51 +00:00

22 lines
526 B
C#

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; }
}
}