上海虹口龙之梦项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.1 KiB

12 months ago
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using UnityEngine;
public static class Config
{
/// <summary>
/// 服务器
/// </summary>
public static string ServerAddress { get; set; } = "";
/// <summary>
/// 桶名称
/// </summary>
public static string BucketName { get; set; } = "WebPlan";
/// <summary>
/// 区域名称
/// </summary>
public static string AreaName { get; set; }
/// <summary>
/// 单位名称
/// </summary>
public static string CompanyName { get; set; }
}
public class ConfigWebGL
{
/// <summary>
/// 服务器
/// </summary>
public string ServerAddress { get; set; } = "http://127.0.0.1:8000";
/// <summary>
/// 桶名称
/// </summary>
public string BucketName { get; set; } = "WebPlan";
/// <summary>
/// 区域名称
/// </summary>
public string AreaName { get; set; }
/// <summary>
/// 单位名称
/// </summary>
public string CompanyName { get; set; }
}