mirror of
https://github.com/LostArtefacts/TRX.git
synced 2025-04-28 20:58:07 +03:00
10 lines
233 B
C#
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; }
|
|
}
|