aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Registration/RegistrationInfo.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Registration/RegistrationInfo.cs')
-rw-r--r--MediaBrowser.Model/Registration/RegistrationInfo.cs28
1 files changed, 0 insertions, 28 deletions
diff --git a/MediaBrowser.Model/Registration/RegistrationInfo.cs b/MediaBrowser.Model/Registration/RegistrationInfo.cs
deleted file mode 100644
index 4e97989cf..000000000
--- a/MediaBrowser.Model/Registration/RegistrationInfo.cs
+++ /dev/null
@@ -1,28 +0,0 @@
-using System;
-
-namespace MediaBrowser.Model.Registration
-{
- public class RegistrationInfo
- {
- /// <summary>
- /// Gets or sets the name.
- /// </summary>
- /// <value>The name.</value>
- public string Name { get; set; }
- /// <summary>
- /// Gets or sets the expiration date.
- /// </summary>
- /// <value>The expiration date.</value>
- public DateTime ExpirationDate { get; set; }
- /// <summary>
- /// Gets or sets a value indicating whether this instance is trial.
- /// </summary>
- /// <value><c>true</c> if this instance is trial; otherwise, <c>false</c>.</value>
- public bool IsTrial { get; set; }
- /// <summary>
- /// Gets or sets a value indicating whether this instance is registered.
- /// </summary>
- /// <value><c>true</c> if this instance is registered; otherwise, <c>false</c>.</value>
- public bool IsRegistered { get; set; }
- }
-}