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

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