All checks were successful
Code Review / code-review (pull_request) Successful in 8s
17 lines
329 B
C#
17 lines
329 B
C#
using UnityEngine;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Octopus.Simulator.Networks
|
|
{
|
|
public class WebConfigList
|
|
{
|
|
public List<WebConfig> configs = new List<WebConfig>();
|
|
}
|
|
|
|
public class WebConfig
|
|
{
|
|
public string host;
|
|
public int port;
|
|
public string accessToken;
|
|
}
|
|
} |