mirror of https://github.com/leiurayer/downkyi
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.
30 lines
632 B
30 lines
632 B
using DownKyi.Images;
|
|
using Prism.Mvvm;
|
|
|
|
namespace DownKyi.ViewModels.PageViewModels
|
|
{
|
|
public class SpaceItem : BindableBase
|
|
{
|
|
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);
|
|
}
|
|
}
|
|
}
|