using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Text; namespace MatrixDotNetLib { public class MatrixUserRooms { /// /// Gets or sets string array of joined rooms /// [JsonProperty("joined_rooms")] public string[] Joined { get; set; } } }