16 lines
452 B
C#
16 lines
452 B
C#
using System.Collections.Generic;
|
|
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
|
|
{
|
|
[JsonProperty("validationOk")] public bool ValidationOk { get; set; }
|
|
}
|
|
} |