Migrate image convert from Eto.Forms to Avalonia.

This commit is contained in:
2020-04-13 04:40:35 +01:00
parent 871af29718
commit 9eb7ef6d3c
8 changed files with 1992 additions and 1610 deletions

View File

@@ -0,0 +1,10 @@
using Aaru.CommonTypes.Interfaces;
namespace Aaru.Gui.Models
{
public class ImagePluginModel
{
public string Name => Plugin.Name;
public IWritableImage Plugin { get; set; }
}
}