about summary refs log tree commit diff
path: root/MatrixRoomUtils.Desktop/Components/Pages/RoomList.axaml.cs
blob: 53c30633b9a0159b3faf4dbc2bd757b1bf990bfd (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 MatrixRoomUtils.Abstractions;

namespace MatrixRoomUtils.Desktop.Components.Pages;

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

    public RoomList() {
        InitializeComponent();
    }
}