mirror of
https://github.com/yaobiao131/downkyicore.git
synced 2025-08-10 00:52:31 +00:00
39 lines
667 B
C#
39 lines
667 B
C#
using Prism.Mvvm;
|
|
|
|
namespace DownKyi.ViewModels.UserSpace;
|
|
|
|
public class Channel : BindableBase
|
|
{
|
|
public long Cid { get; set; }
|
|
|
|
/*private ImageSource cover;
|
|
public ImageSource Cover
|
|
{
|
|
get => cover;
|
|
set => SetProperty(ref cover, 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);
|
|
}
|
|
|
|
private string ctime;
|
|
|
|
public string Ctime
|
|
{
|
|
get => ctime;
|
|
set => SetProperty(ref ctime, value);
|
|
}
|
|
} |