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.

20 lines
459 B

using System.Collections.Generic;
namespace Senparc.Weixin.Sample.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; }
}
}