Initial import

This commit is contained in:
2026-04-02 16:48:03 +02:00
commit 3da5213e1a
112 changed files with 4672 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
namespace ClearstreamAPIConnector;
internal class Token
{
public string? access_token { get; set; }
public string? token_type { get; set; }
public int expires_in { get; set; }
public string? refresh_token { get; set; }
}