[Plugin system] Move writable media images to dependency injection.

This commit is contained in:
2023-10-06 00:40:44 +01:00
parent 02a207c320
commit 508b78719d
10 changed files with 31 additions and 56 deletions

View File

@@ -36,6 +36,6 @@ namespace Aaru.Gui.Models;
public sealed class ImagePluginModel
{
public string Name => Plugin.Name;
public IWritableImage Plugin { get; set; }
public string Name => Plugin.Name;
public IBaseWritableImage Plugin { get; set; }
}