This commit is contained in:
2022-03-07 20:50:19 +00:00
parent 161986c246
commit b4f5ef3a72
6 changed files with 119 additions and 55 deletions

View File

@@ -24,12 +24,14 @@ namespace AyaNova.Models
public long CustomerId { get; set; }
[Required]
public long CustomerNotifySubscriptionId { get; set; }//source subscription that triggered this event to be created
public decimal DecValue { get; set; }
//date of the event actually occuring, e.g. WarrantyExpiry date. Compared with subscription to determine if deliverable or not
public DateTime EventDate { get; set; }
public string Message { get; set; }
public string Subject { get; set; }//email subject line
public string Message { get; set; }//email body
public CustomerNotifyEvent()
@@ -48,8 +50,8 @@ namespace AyaNova.Models
}
//linked entity
// public NotifySubscription NotifySubscription { get; set; }
// public User User { get; set; }
// public NotifySubscription NotifySubscription { get; set; }
// public User User { get; set; }
}//eoc