mirror of
https://github.com/yaobiao131/downkyicore.git
synced 2025-08-10 00:52:31 +00:00
33 lines
559 B
C#
33 lines
559 B
C#
using Avalonia.Media;
|
|
using Prism.Mvvm;
|
|
|
|
namespace DownKyi.ViewModels.UserSpace;
|
|
|
|
public class PublicationZone : BindableBase
|
|
{
|
|
public int Tid { get; set; }
|
|
|
|
private DrawingImage icon;
|
|
|
|
public DrawingImage Icon
|
|
{
|
|
get => icon;
|
|
set => SetProperty(ref icon, value);
|
|
}
|
|
|
|
private string name;
|
|
|
|
public string Name
|
|
{
|
|
get => name;
|
|
set => SetProperty(ref name, value);
|
|
}
|
|
|
|
private int count;
|
|
|
|
public int Count
|
|
{
|
|
get => count;
|
|
set => SetProperty(ref count, value);
|
|
}
|
|
} |