Files
downkyicore/DownKyi/ViewModels/PageViewModels/SpaceItem.cs
2023-11-25 21:59:48 +08:00

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);
}
}