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

11
Models/UserModels.cs Normal file
View File

@@ -0,0 +1,11 @@
using Newtonsoft.Json;
namespace Chtn.CSharp.SDK.Models.User
{
public class PersonalUserData
{
[JsonProperty("userid")] public string UserId { get; set; }
[JsonProperty("username")] public string Username { get; set; }
[JsonProperty("email")] public string Email { get; set; }
}
}