mirror of
https://github.com/yaobiao131/downkyicore.git
synced 2025-08-10 00:52:31 +00:00
39 lines
692 B
C#
39 lines
692 B
C#
using DownKyi.Images;
|
|
using Prism.Mvvm;
|
|
|
|
namespace DownKyi.ViewModels.PageViewModels;
|
|
|
|
public class SpaceItem : BindableBase
|
|
{
|
|
private bool isEnabled;
|
|
|
|
public bool IsEnabled
|
|
{
|
|
get => isEnabled;
|
|
set => SetProperty(ref isEnabled, value);
|
|
}
|
|
|
|
private VectorImage image;
|
|
|
|
public VectorImage Image
|
|
{
|
|
get => image;
|
|
set => SetProperty(ref image, value);
|
|
}
|
|
|
|
private string title;
|
|
|
|
public string Title
|
|
{
|
|
get => title;
|
|
set => SetProperty(ref title, value);
|
|
}
|
|
|
|
private string subtitle;
|
|
|
|
public string Subtitle
|
|
{
|
|
get => subtitle;
|
|
set => SetProperty(ref subtitle, value);
|
|
}
|
|
} |