步步为盈
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.

46 lines
1.1 KiB

using BBWY.Client.Models;
3 years ago
using System.Collections.Generic;
namespace BBWY.Client
{
public class GlobalContext : NotifyObject
{
2 years ago
public GlobalContext()
{
2 years ago
ShopServiceGroupList = new List<string>();
2 years ago
ShopServiceGroupLowerList = new List<string>();
2 years ago
ClientVersion = "10117";
2 years ago
}
3 years ago
private User user;
public User User { get => user; set { Set(ref user, value); } }
3 years ago
public string UserToken { get; set; }
3 years ago
3 years ago
public IList<LogisticsResponse> LogisticsResponseList { get; set; }
3 years ago
2 years ago
public IList<string> ShopServiceGroupList { get; set; }
2 years ago
2 years ago
public IList<string> ShopServiceGroupLowerList { get; set; }
2 years ago
public string ClientVersion { get; set; }
3 years ago
/// <summary>
/// JD客户端
/// </summary>
//public IJdClient JdClient { get; set; }
3 years ago
#region APIHost
public string BBYWApiHost { get; set; }
public string MDSApiHost { get; set; }
public string JOSApiHost { get; set; }
public string _1688ApiHost { get; set; }
2 years ago
public string QKApiHost { get; set; }
3 years ago
#endregion
}
}