From afeafd944481efcd3ef9c2073f119250247346a2 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Tue, 10 Mar 2015 23:30:19 -0400 Subject: [PATCH] update RegistrationInfo --- MediaBrowser.Model/Registration/RegistrationInfo.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/MediaBrowser.Model/Registration/RegistrationInfo.cs b/MediaBrowser.Model/Registration/RegistrationInfo.cs index da4c27fbdf..4e97989cff 100644 --- a/MediaBrowser.Model/Registration/RegistrationInfo.cs +++ b/MediaBrowser.Model/Registration/RegistrationInfo.cs @@ -20,9 +20,9 @@ namespace MediaBrowser.Model.Registration /// true if this instance is trial; otherwise, false. public bool IsTrial { get; set; } /// - /// Gets or sets a value indicating whether this instance is valid. + /// Gets or sets a value indicating whether this instance is registered. /// - /// true if this instance is valid; otherwise, false. - public bool IsValid { get; set; } + /// true if this instance is registered; otherwise, false. + public bool IsRegistered { get; set; } } }