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.
46 lines
988 B
46 lines
988 B
using Prism.Mvvm;
|
|
|
|
namespace DownKyi.ViewModels.UserSpace
|
|
{
|
|
public class TabRightBanner : BindableBase
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
private bool isEnabled;
|
|
public bool IsEnabled
|
|
{
|
|
get => isEnabled;
|
|
set => SetProperty(ref isEnabled, value);
|
|
}
|
|
|
|
private string labelColor;
|
|
public string LabelColor
|
|
{
|
|
get => labelColor;
|
|
set => SetProperty(ref labelColor, value);
|
|
}
|
|
|
|
private string countColor;
|
|
public string CountColor
|
|
{
|
|
get => countColor;
|
|
set => SetProperty(ref countColor, value);
|
|
}
|
|
|
|
private string label;
|
|
public string Label
|
|
{
|
|
get => label;
|
|
set => SetProperty(ref label, value);
|
|
}
|
|
|
|
private string count;
|
|
public string Count
|
|
{
|
|
get => count;
|
|
set => SetProperty(ref count, value);
|
|
}
|
|
|
|
}
|
|
}
|