aboutsummaryrefslogtreecommitdiff
path: root/Emby.Dlna/Eventing/EventSubscription.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Emby.Dlna/Eventing/EventSubscription.cs')
-rw-r--r--Emby.Dlna/Eventing/EventSubscription.cs35
1 files changed, 0 insertions, 35 deletions
diff --git a/Emby.Dlna/Eventing/EventSubscription.cs b/Emby.Dlna/Eventing/EventSubscription.cs
deleted file mode 100644
index 4fd7f8169..000000000
--- a/Emby.Dlna/Eventing/EventSubscription.cs
+++ /dev/null
@@ -1,35 +0,0 @@
-#nullable disable
-
-#pragma warning disable CS1591
-
-using System;
-
-namespace Emby.Dlna.Eventing
-{
- public class EventSubscription
- {
- public string Id { get; set; }
-
- public string CallbackUrl { get; set; }
-
- public string NotificationType { get; set; }
-
- public DateTime SubscriptionTime { get; set; }
-
- public int TimeoutSeconds { get; set; }
-
- public long TriggerCount { get; set; }
-
- public bool IsExpired => SubscriptionTime.AddSeconds(TimeoutSeconds) >= DateTime.UtcNow;
-
- public void IncrementTriggerCount()
- {
- if (TriggerCount == long.MaxValue)
- {
- TriggerCount = 0;
- }
-
- TriggerCount++;
- }
- }
-}