Subscription.cs 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ReportServer.Models
  4. {
  5. public partial class Subscription
  6. {
  7. public Subscription()
  8. {
  9. ActiveSubscriptions = new HashSet<ActiveSubscription>();
  10. Notifications = new HashSet<Notification>();
  11. }
  12. public Guid SubscriptionId { get; set; }
  13. public Guid OwnerId { get; set; }
  14. public Guid ReportOid { get; set; }
  15. public string Locale { get; set; } = null!;
  16. public int InactiveFlags { get; set; }
  17. public string? ExtensionSettings { get; set; }
  18. public Guid ModifiedById { get; set; }
  19. public DateTime ModifiedDate { get; set; }
  20. public string? Description { get; set; }
  21. public string? LastStatus { get; set; }
  22. public string EventType { get; set; } = null!;
  23. public string? MatchData { get; set; }
  24. public DateTime? LastRunTime { get; set; }
  25. public string? Parameters { get; set; }
  26. public string? DataSettings { get; set; }
  27. public string? DeliveryExtension { get; set; }
  28. public int Version { get; set; }
  29. public int ReportZone { get; set; }
  30. public virtual User ModifiedBy { get; set; } = null!;
  31. public virtual User Owner { get; set; } = null!;
  32. public virtual Catalog ReportO { get; set; } = null!;
  33. public virtual ICollection<ActiveSubscription> ActiveSubscriptions { get; set; }
  34. public virtual ICollection<Notification> Notifications { get; set; }
  35. }
  36. }