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.
42 lines
870 B
42 lines
870 B
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); } }
|
|
|
|
/// <summary>
|
|
/// 用户名
|
|
/// </summary>
|
|
public string UserName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 密码
|
|
/// </summary>
|
|
public string Pwd { get; set; }
|
|
|
|
/// <summary>
|
|
/// JD客户端
|
|
/// </summary>
|
|
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
|
|
|
|
}
|
|
}
|