You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
downkyi/DatabaseManager/Models/CoverModel.cs

48 lines
1.1 KiB

namespace DatabaseManager.Models
{
public class CoverModel
{
public long Avid { get; set; }
public string Bvid { get; set; }
public long Cid { get; set; }
public string Url { get; set; }
public string Md5 { get; set; }
//private long avid;
//public long Avid
//{
// get { return avid; }
// set { SetProperty(ref avid, value); }
//}
//private string bvid;
//public string Bvid
//{
// get { return bvid; }
// set { SetProperty(ref bvid, value); }
//}
//private long cid;
//public long Cid
//{
// get { return cid; }
// set { SetProperty(ref cid, value); }
//}
//private string url;
//public string Url
//{
// get { return url; }
// set { SetProperty(ref url, value); }
//}
//private string md5;
//public string Md5
//{
// get { return md5; }
// set { SetProperty(ref md5, value); }
//}
}
}