17 lines
482 B
C#
Raw Normal View History

2021-04-06 15:30:36 +08:00
using Assets.Scripts.Apis.Models;
using System.Collections;
2021-03-25 16:53:39 +08:00
using System.Collections.Generic;
using UnityEngine;
public static class App
{
2021-04-06 15:30:36 +08:00
public static string Host = "http://192.168.0.101:5087/";
2021-03-25 16:53:39 +08:00
public static string AppVersion = "1.0.0";
public static int RouteIdParam = 0;
2021-04-06 15:30:36 +08:00
public static UserModel CurrentUser { get; set; }
public static string WxAppId = "wx9e8ca734e024f084";
public static string WxAppSecret = "906abafb2a18bc7a66ccfa5550f859b6";
2021-03-25 16:53:39 +08:00
}