2021-03-25 17:18:51 +08:00
|
|
|
|
using Assets.Scripts.Apis;
|
|
|
|
|
|
using Assets.Scripts.Apis.Models;
|
|
|
|
|
|
using System;
|
2021-03-22 16:05:40 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Assets.Scripts
|
|
|
|
|
|
{
|
|
|
|
|
|
public class ConfigHelper
|
|
|
|
|
|
{
|
2021-03-25 16:53:39 +08:00
|
|
|
|
public static string Host = App.Host;
|
2021-03-22 16:05:40 +08:00
|
|
|
|
|
2021-03-25 16:53:39 +08:00
|
|
|
|
public static string AppVersion = App.AppVersion;
|
2021-03-25 17:18:51 +08:00
|
|
|
|
public static UserResultModel CurrentUser { get; set; }
|
|
|
|
|
|
public static UserApi userApi = new UserApi();
|
|
|
|
|
|
public static MapApi mapApi = new MapApi();
|
|
|
|
|
|
public static MapInterruptRecordApi mapInterruptRecordApi = new MapInterruptRecordApi();
|
2021-03-22 16:05:40 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|