using System.Collections.ObjectModel; using Aaru.Gui.ViewModels; using Avalonia.Media.Imaging; namespace Aaru.Gui.Models { public class DeviceModel { public DeviceModel() => Media = new ObservableCollection(); public Bitmap Icon { get; set; } public string Name { get; set; } public string Path { get; set; } public DeviceInfoViewModel ViewModel { get; set; } public ObservableCollection Media { get; } } }