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.
21 lines
458 B
21 lines
458 B
using System.Collections.Generic;
|
|
|
|
namespace Znyc.WeChat.CommonService.Download
|
|
{
|
|
public class Config
|
|
{
|
|
public int QrCodeId { get; set; }
|
|
|
|
/// <summary>
|
|
/// chm版
|
|
/// </summary>
|
|
public List<string> Versions { get; set; }
|
|
|
|
/// <summary>
|
|
/// 网页版
|
|
/// </summary>
|
|
public List<string> WebVersions { get; set; }
|
|
|
|
public int DownloadCount { get; set; }
|
|
}
|
|
}
|