using System.Collections.ObjectModel; using ArcaneLibs; using LibMatrix; namespace ModerationClient.Models.SpaceTreeNodes; public class RoomNode : NotifyPropertyChanged { private string? _name; public string RoomID { get; set; } public string? Name { get => _name; set => SetField(ref _name, value); } public ObservableCollection Timeline { get; } = new(); public ObservableCollection State { get; } = new(); }