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.
|
|
|
using FluentAvalonia.UI.Controls;
|
|
|
|
|
|
|
|
namespace StabilityMatrix.Avalonia.ViewModels;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// An abstract class for enabling page navigation.
|
|
|
|
/// </summary>
|
|
|
|
public abstract class PageViewModelBase : ViewModelBase
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets if the user can navigate to the next page
|
|
|
|
/// </summary>
|
|
|
|
public virtual bool CanNavigateNext { get; protected set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets if the user can navigate to the previous page
|
|
|
|
/// </summary>
|
|
|
|
public virtual bool CanNavigatePrevious { get; protected set; }
|
|
|
|
|
|
|
|
public abstract string Title { get; }
|
|
|
|
public abstract Symbol Icon { get; }
|
|
|
|
}
|