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