This commit is contained in:
2025-12-02 18:48:32 +08:00
parent 92ba80b399
commit bf1ca60b3b
2357 changed files with 262694 additions and 7 deletions

View File

@@ -0,0 +1,24 @@
using Newtonsoft.Json;
using System.Collections.Generic;
namespace Edgegap
{
public struct DeployPostData
{
[JsonProperty("app_name")]
public string AppName { get; set; }
[JsonProperty("version_name")]
public string AppVersionName { get; set; }
[JsonProperty("ip_list")]
public IList<string> IpList { get; set; }
public DeployPostData(string appName, string appVersionName, IList<string> ipList)
{
AppName = appName;
AppVersionName = appVersionName;
IpList = ipList;
}
}
}