using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using RustTools.muqing;
namespace RustTools.ApiFox;
class mod
{
//最新时间 下载数量 投币数量 更新数量
//latestTime downloadNumber,coinNumber ,updateNumber
public static string latestTime = "latestTime";
public static string downloadNumber = "downloadNumber";
public static string coinNumber = "coinNumber";
public static string updateNumber = "updateNumber";
///
/// 推荐接口
///
///
public static async Task random()
{
var v = await wl.postAsync("/php/mod.php?action=random", new string[][]{
new string[] { "number", "6" }});
return v ?? string.Empty;
}
public static async Task list(string sortMode, string limit, string tag)
{
var v = await wl.postAsync("/php/mod.php?action=list", new string[][]{
new string[] { "sortMode", sortMode },
new string[] { "limit", limit},
new string[] { "tag",tag }});
return v ?? string.Empty;
}
public static async Task getInfo(string account, string modId)
{
var v = await wl.postAsync("/php/mod.php?action=getInfo", new string[][]{
new string[] { "account", account },
new string[] { "modId", modId}
});
return v ?? string.Empty;
}
}