This commit is contained in:
2020-07-20 19:05:28 +00:00
parent 0842ce025e
commit ab65e15d99
7 changed files with 69 additions and 26 deletions

View File

@@ -23,7 +23,7 @@ namespace AyaNova.Models
[Required]
public NotifyEventType EventType { get; set; }
[Required]
public long SubscriptionId { get; set; }
public long NotifySubscriptionId { get; set; }
public string Message { get; set; }
[Required]
public bool Fetched { get; set; }
@@ -34,6 +34,9 @@ namespace AyaNova.Models
Fetched = false;
}
//linked entity
public NotifySubscription NotifySubscription { get; set; }
}//eoc
}//eons