23 lines
676 B
C#
23 lines
676 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace BF
|
|
{
|
|
[Serializable]
|
|
public class BFVersionInfo
|
|
{
|
|
// 最小版本号,低于此版本号的必须强制更新
|
|
public string min_version;
|
|
// 提示更新版本号,低于此版本号的提示更新
|
|
public string latest_version;
|
|
// 当前最新版本号
|
|
public string version;
|
|
// 商店地址
|
|
public string store_url;
|
|
public string env;
|
|
public string cdn_url;
|
|
public List<Dictionary<string, string>> game_urls = new List<Dictionary<string, string>>();
|
|
public long open_at;
|
|
public string notice;
|
|
}
|
|
} |