This commit is contained in:
2025-06-16 15:14:23 +02:00
committed by devbeni
parent 60fe4620ff
commit 4ff561284f
3174 changed files with 428263 additions and 0 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;
}
}
}