Move opening image code from Eto to Avalonia.

This commit is contained in:
2020-04-11 21:04:20 +01:00
parent 95f30ce5a5
commit 4696645a01
8 changed files with 602 additions and 253 deletions

View File

@@ -0,0 +1,11 @@
using Aaru.CommonTypes.Interfaces;
namespace Aaru.Gui.Models
{
public class FileSystemModel : RootModel
{
public string VolumeName { get; set; }
public IFilesystem Filesystem { get; set; }
public IReadOnlyFilesystem ReadOnlyFilesystem { get; set; }
}
}