This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user