Files
Aaru/Aaru.Gui/Models/DeviceModel.cs

11 lines
224 B
C#
Raw Normal View History

using Avalonia.Media.Imaging;
2020-04-11 04:35:38 +01:00
namespace Aaru.Gui.Models
{
public class DeviceModel
{
public Bitmap Icon { get; set; }
public string Name { get; set; }
public string Path { get; set; }
}
2020-04-11 04:35:38 +01:00
}