using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Text; namespace MatrixDotNetLib { public class MatrixLoginResponse { /// /// Gets or sets the access token (optional) /// [JsonProperty("access_token")] public string Token { get; set; } /// /// Gets or sets the device ID (optional) /// [JsonProperty("device_id")] public string DeviceId { get; set; } /// /// Gets or sets the user ID (optional) /// [JsonProperty("user_id")] public string UserId { get; set; } /// /// Gets or sets client configuration (optional) /// [JsonProperty("well_known")] public MatrixUserServers KnownServers { get; set; } } }