12345678910111213141516171819202122232425262728293031 |
- namespace Foghorn.Core
- {
- using System;
- using System.Collections.Generic;
-
- public partial class Subscriber
- {
- public Subscriber()
- {
- this.NotificationsSent = new HashSet<Notification>();
- }
-
- public System.Guid SubscriberId { get; set; }
- public string SubscriberName { get; set; }
- public Nullable<int> Port { get; set; }
- public string HostName { get; set; }
- public string Password { get; set; }
-
- public virtual ICollection<Notification> NotificationsSent { get; set; }
- public virtual SendingApplication SendingApplication { get; set; }
- }
- }
|