Subscriber.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated from a template.
  4. //
  5. // Manual changes to this file may cause unexpected behavior in your application.
  6. // Manual changes to this file will be overwritten if the code is regenerated.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. namespace Foghorn.Core
  10. {
  11. using System;
  12. using System.Collections.Generic;
  13. public partial class Subscriber
  14. {
  15. public Subscriber()
  16. {
  17. this.NotificationsSent = new HashSet<Notification>();
  18. }
  19. public System.Guid SubscriberId { get; set; }
  20. public string SubscriberName { get; set; }
  21. public Nullable<int> Port { get; set; }
  22. public string HostName { get; set; }
  23. public string Password { get; set; }
  24. public virtual ICollection<Notification> NotificationsSent { get; set; }
  25. public virtual SendingApplication SendingApplication { get; set; }
  26. }
  27. }