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

39 lines
664 B
C#

using DownKyi.Images;
using Prism.Mvvm;
namespace DownKyi.ViewModels.PageViewModels;
public class TabHeader : BindableBase
{
private long id;
public long Id
{
get => id;
set => SetProperty(ref id, 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);
}
}