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; }
}
}