2025-12-08 10:59:29 +09:00
|
|
|
using System;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
namespace Simulator.Config
|
|
|
|
|
{
|
|
|
|
|
[Serializable]
|
|
|
|
|
public class SimulatorConfig
|
|
|
|
|
{
|
|
|
|
|
public string simulatorNumber;
|
|
|
|
|
public string projectId;
|
|
|
|
|
public string logicId;
|
|
|
|
|
public string simulationId;
|
|
|
|
|
public string modelId;
|
|
|
|
|
}
|
2026-01-20 17:17:16 +09:00
|
|
|
|
|
|
|
|
[Serializable]
|
|
|
|
|
public class SimulatorWebConfig
|
|
|
|
|
{
|
|
|
|
|
public string host;
|
|
|
|
|
public string port;
|
|
|
|
|
public string accessToken;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Serializable]
|
|
|
|
|
public class SimulatorMQTTConfig
|
|
|
|
|
{
|
|
|
|
|
public string name;
|
|
|
|
|
public string protocol;
|
|
|
|
|
public string host;
|
|
|
|
|
public string port;
|
|
|
|
|
}
|
2025-12-08 10:59:29 +09:00
|
|
|
}
|