aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-03-10 23:30:19 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-03-10 23:30:19 -0400
commitafeafd944481efcd3ef9c2073f119250247346a2 (patch)
treee6dae5b616da8dd08190a99affe8786d7ecef6bf
parentc2ad6f83d300cd3f4f760eca7a8266e8dfd5550a (diff)
update RegistrationInfo
-rw-r--r--MediaBrowser.Model/Registration/RegistrationInfo.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/MediaBrowser.Model/Registration/RegistrationInfo.cs b/MediaBrowser.Model/Registration/RegistrationInfo.cs
index da4c27fbd..4e97989cf 100644
--- a/MediaBrowser.Model/Registration/RegistrationInfo.cs
+++ b/MediaBrowser.Model/Registration/RegistrationInfo.cs
@@ -20,9 +20,9 @@ namespace MediaBrowser.Model.Registration
/// <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 valid.
+ /// Gets or sets a value indicating whether this instance is registered.
/// </summary>
- /// <value><c>true</c> if this instance is valid; otherwise, <c>false</c>.</value>
- public bool IsValid { get; set; }
+ /// <value><c>true</c> if this instance is registered; otherwise, <c>false</c>.</value>
+ public bool IsRegistered { get; set; }
}
}