using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Text; namespace MatrixDotNetLib { public class MatrixRoom { /// /// Gets or sets the chat room id. /// [JsonProperty("room_id")] public string RoomId { get; set; } } }