using System;
using System.Collections.Generic;
using System.Text;
using BBWY.Client.Models;
using Jd.Api;
namespace BBWY.Client
{
public class GlobalContext : NotifyObject
{
private User user;
public User User { get => user; set { Set(ref user, value); } }
///
/// 用户名
///
public string UserName { get; set; }
///
/// 密码
///
public string Pwd { get; set; }
///
/// JD客户端
///
public IJdClient JdClient { get; set; }
#region APIHost
public string BBYWApiHost { get; set; }
public string MDSApiHost { get; set; }
public string JOSApiHost { get; set; }
public string _1688ApiHost { get; set; }
#endregion
}
}