PluralRichPresence/PluralRichPresnce/Api/ApiType.cs

13 lines
198 B
C#
Raw Normal View History

2024-03-15 06:08:47 +00:00
namespace PluralRichPresence.Api
2023-10-17 08:04:18 +00:00
{
public class ApiType
{
internal string token;
public ApiType(string token)
{
this.token = token;
}
}
}