16 lines
308 B
C#
16 lines
308 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Assets.Scripts
|
|
{
|
|
public class ConfigHelper
|
|
{
|
|
public static string Host = "http://192.168.0.97:5082/";
|
|
|
|
public static string AppVersion = "1.0.0";
|
|
}
|
|
}
|