mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
15 lines
511 B
C#
15 lines
511 B
C#
using Aaru.Gui.ViewModels;
|
|
using Avalonia.Media.Imaging;
|
|
|
|
namespace Aaru.Gui.Models
|
|
{
|
|
public class MediaModel
|
|
{
|
|
public Bitmap Icon { get; set; }
|
|
public string Name { get; set; }
|
|
public string DevicePath { get; set; }
|
|
public bool NonRemovable { get; set; }
|
|
public bool NoMediaInserted { get; set; }
|
|
public MediaInfoViewModel ViewModel { get; set; }
|
|
}
|
|
} |