using System; using System.Collections.Generic; using System.Text; using Newtonsoft.Json; namespace MatrixDotNetLib { public class MatrixUser { /// /// Gets or sets user id as a string /// [JsonProperty("user_id")] public string userid { get; set; } /// /// Gets or sets access token as a string /// [JsonProperty("access_token")] public string token { get; set; } /// /// Gets or sets home server as string /// [JsonProperty("home_server")] public string server { get; set; } /// /// Gets or sets device id as string (optional) /// [JsonProperty("device_id")] public string deviceid { get; set; } } }