PinRedeemResult.cs 530 B

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