update RegistrationInfo

This commit is contained in:
Luke Pulverenti 2015-03-10 23:30:19 -04:00
parent c2ad6f83d3
commit afeafd9444

View File

@ -20,9 +20,9 @@ namespace MediaBrowser.Model.Registration
/// <value><c>true</c> if this instance is trial; otherwise, <c>false</c>.</value> /// <value><c>true</c> if this instance is trial; otherwise, <c>false</c>.</value>
public bool IsTrial { get; set; } public bool IsTrial { get; set; }
/// <summary> /// <summary>
/// Gets or sets a value indicating whether this instance is valid. /// Gets or sets a value indicating whether this instance is registered.
/// </summary> /// </summary>
/// <value><c>true</c> if this instance is valid; otherwise, <c>false</c>.</value> /// <value><c>true</c> if this instance is registered; otherwise, <c>false</c>.</value>
public bool IsValid { get; set; } public bool IsRegistered { get; set; }
} }
} }