using ReactiveUI; using System.Reactive; namespace Avalar.ViewModels.Image { public class ImageNotLoadedViewModel : ReactiveObject { public ImageNotLoadedViewModel(ReactiveCommand openFileCommand) { OpenFileCommand = openFileCommand; } public ReactiveCommand OpenFileCommand { get; } } }