Add tree view to main window.

This commit is contained in:
2020-04-11 04:35:38 +01:00
parent f8f334737b
commit 95f30ce5a5
8 changed files with 115 additions and 13 deletions

View 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; }
}
}