PinRedeemResult.cs 599 B

123456789101112131415161718192021
  1. #pragma warning disable CS1591
  2. using System;
  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; } = Array.Empty<string>();
  17. }
  18. }