PinRedeemResult.cs 526 B

12345678910111213141516
  1. namespace MediaBrowser.Model.Users
  2. {
  3. public class PinRedeemResult
  4. {
  5. /// <summary>
  6. /// Gets or sets a value indicating whether this <see cref="PinRedeemResult"/> is success.
  7. /// </summary>
  8. /// <value><c>true</c> if success; otherwise, <c>false</c>.</value>
  9. public bool Success { get; set; }
  10. /// <summary>
  11. /// Gets or sets the users reset.
  12. /// </summary>
  13. /// <value>The users reset.</value>
  14. public string[] UsersReset { get; set; }
  15. }
  16. }