Files
survival-game/Assets/Mirror/Hosting/Edgegap/Models/DeployPostData.cs
2025-06-16 13:15:42 +00:00

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;
}
}
}