using Avalonia.Media.Imaging; using System.ComponentModel; namespace Avalar.Models.Interfaces { public interface IImageModel : INotifyPropertyChanged { IBitmap LoadImage(string imagePath); IBitmap LatestResult { get; } } }