mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Add tree view to main window.
This commit is contained in:
11
Aaru.Gui/Models/DevicesRootModel.cs
Normal file
11
Aaru.Gui/Models/DevicesRootModel.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using System.Collections.ObjectModel;
|
||||
|
||||
namespace Aaru.Gui.Models
|
||||
{
|
||||
public class DevicesRootModel : RootModel
|
||||
{
|
||||
public DevicesRootModel() => Devices = new ObservableCollection<DeviceModel>();
|
||||
|
||||
public ObservableCollection<DeviceModel> Devices { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user