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

48 lines
853 B
C#

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