remove dependency on VRChat.API

This commit is contained in:
Lillith Fox 2024-12-14 11:35:37 -05:00
parent db4c283210
commit 5e19348a11
4 changed files with 57 additions and 47 deletions

11
VRCAuthProxy/types/API.cs Normal file
View file

@ -0,0 +1,11 @@
namespace VRCAuthProxy.types;
public struct TotpVerifyResponse
{
public bool verified { get; set; }
}
public struct User
{
public string displayName { get; set; }
}