about summary refs log tree commit diff
path: root/MatrixUtils.Desktop/Components/Pages/RoomList.axaml.cs
blob: a0c9fcc93c9e0e3dc04db483a79e0a65f83d16a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System.Collections.ObjectModel;
using Avalonia;
using Avalonia.Controls;
using Avalonia.Markup.Xaml;
using MatrixUtils.Abstractions;

namespace MatrixUtils.Desktop.Components.Pages;

public partial class RoomList : UserControl {
    private ObservableCollection<RoomInfo> Rooms { get; set; } = new();

    public RoomList() {
        InitializeComponent();
    }
}