This commit is contained in:
2023-01-23 19:55:01 +00:00
parent 30b832d66e
commit 266a56c43d
2 changed files with 6 additions and 5 deletions

View File

@@ -20,18 +20,19 @@ namespace Sockeye.Models
public string VendorData { get; set; }
public DateTime? Processed { get; set; } = null;//indicates it was fully processed and need not be processed by purchase generating job (all imported data set to processed)
public List<string> Tags { get; set; }
//workaround for notification
[NotMapped, JsonIgnore]
public string Name { get; set; }
public VendorNotification()
{
Tags = new List<string>();
}
[NotMapped, JsonIgnore]
public SockType SType { get => SockType.VendorNotification; }
public List<string> Tags { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
}//eoc
}//eons