25 lines
597 B
C#
25 lines
597 B
C#
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;
|
|
}
|
|
}
|
|
}
|