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.
downkyi/DownKyi/ViewModels/UserSpace/TabRightBanner.cs

44 lines
951 B

using Prism.Mvvm;
namespace DownKyi.ViewModels.UserSpace
{
public class TabRightBanner : BindableBase
{
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);
}
}
}