12345678910111213141516171819202122232425262728293031323334 |
- namespace Foghorn.Core
- {
- using System;
- using System.Collections.Generic;
-
- public partial class Notification
- {
- public Notification()
- {
- this.Priority = 0;
- this.Sticky = false;
- this.SentToSubscribers = new HashSet<Subscriber>();
- }
-
- public int NotificationId { get; set; }
- public string NotificationTitle { get; set; }
- public string NotificationMessage { get; set; }
- public System.DateTime SentDateTime { get; set; }
- public int Priority { get; set; }
- public bool Sticky { get; set; }
-
- public virtual ICollection<Subscriber> SentToSubscribers { get; set; }
- public virtual NotificationType NotificationType { get; set; }
- }
- }
|