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
23 lines
640 B
1 year ago
|
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();
|
||
|
}
|
||
|
}
|