Multi-Platform Package Manager for Stable Diffusion
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
640 B

using StabilityMatrix.Avalonia.Models.Inference;
using StabilityMatrix.Avalonia.Services;
using StabilityMatrix.Avalonia.ViewModels.Base;
namespace StabilityMatrix.Avalonia.ViewModels.Inference.Modules;
public class SaveImageModule : ModuleBase
{
/// <inheritdoc />
public SaveImageModule(ServiceManager<ViewModelBase> vmFactory)
: base(vmFactory)
{
Title = "Save Intermediary Image";
AddCards(vmFactory.Get<UpscalerCardViewModel>());
}
/// <inheritdoc />
protected override void OnApplyStep(ModuleApplyStepEventArgs e)
{
throw new System.NotImplementedException();
}
}