namespace VRCAuthProxy.types; public class TotpVerifyResponse { public bool verified { get; set; } } public class User { public string? displayName { get; set; } public bool? requiresTwoFactorAuth { get; set; } public bool? totp { get; set; } }