123456789101112131415161718192021222324252627282930 |
- namespace Foghorn.Core
- {
- using System;
- using System.Collections.Generic;
-
- public partial class SendingApplication
- {
- public SendingApplication()
- {
- this.Subscribers = new HashSet<Subscriber>();
- this.NotificationTypes = new HashSet<NotificationType>();
- }
-
- public int SendingApplicationId { get; set; }
- public string SendingApplicationName { get; set; }
- public byte[] SendingApplicationIcon { get; set; }
-
- public virtual ICollection<Subscriber> Subscribers { get; set; }
- public virtual ICollection<NotificationType> NotificationTypes { get; set; }
- }
- }
|