PinRedeemResult.cs 577 B

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