Implement AuthService and ApiClient core logic

This commit is contained in:
2026-04-09 14:22:47 +02:00
parent 3ee4edac6c
commit 8cbfa61766
22 changed files with 503 additions and 13 deletions

12
Models/SessionModels.cs Normal file
View File

@@ -0,0 +1,12 @@
using Chtn.CSharp.SDK.Models.User;
using Newtonsoft.Json;
namespace Chtn.CSharp.SDK.Models.Session
{
public class Session
{
[JsonProperty("userData")] public PersonalUserData UserData { get; set; }
[JsonProperty("token")] public string Token { get; set; }
}
public class ValidateSessionResp { public bool ValidationOk { get; set; } }
}