TRX/tools/installer/TRX_InstallerLib/Models/IStep.cs
lahm86 e16fcda94b tools/installer: create common installer library
This creates a generic common installer WPF library for both games.
2025-03-30 12:34:54 +01:00

10 lines
233 B
C#

using System.ComponentModel;
namespace TRX_InstallerLib.Models;
public interface IStep : INotifyPropertyChanged
{
bool CanProceedToNextStep { get; }
bool CanProceedToPreviousStep { get; }
string SidebarImage { get; }
}