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.

31 lines
685 B

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