aha
This commit is contained in:
24
Assets/Mirror/Hosting/Edgegap/Models/DeployPostData.cs
Normal file
24
Assets/Mirror/Hosting/Edgegap/Models/DeployPostData.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user