mirror of
https://github.com/yaobiao131/downkyicore.git
synced 2025-08-10 00:52:31 +00:00
48 lines
853 B
C#
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);
|
|
}
|
|
} |