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

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