// // Copyright (c) PlaceholderCompany. All rights reserved. // #pragma warning disable CS1591 using global::System; namespace MediaBrowser.Model.Users; public class PinRedeemResult { /// /// Gets or sets a value indicating whether this is success. /// /// true if success; otherwise, false. public bool Success { get; set; } /// /// Gets or sets the users reset. /// /// The users reset. public string[] UsersReset { get; set; } = Array.Empty(); }