feat: auto fetch remote hotfix.

This commit is contained in:
初心浮梦
2025-12-01 03:51:12 +08:00
parent c66443d669
commit fd97cf49dd
6 changed files with 168 additions and 20 deletions

View File

@@ -0,0 +1,17 @@
namespace EggLink.DanhengServer.WebServer.Request;
public class GateWayRequest
{
public string version { get; set; } = "";
public string t { get; set; } = "";
public string uid { get; set; } = "";
public string language_type { get; set; } = "";
public string platform_type { get; set; } = "";
public string dispatch_seed { get; set; } = "";
public string channel_id { get; set; } = "";
public string sub_channel_id { get; set; } = "";
public string is_need_url { get; set; } = "";
public string game_version { get; set; } = "";
public string account_type { get; set; } = "";
public string account_uid { get; set; } = "";
}