using BBWYB.Client.Models;
using CommunityToolkit.Mvvm.ComponentModel;
using System.Collections.Generic;

namespace BBWYB.Client
{
    public class GlobalContext : ObservableObject
    {
        public GlobalContext()
        {
        }

        private User user;

        public User User { get => user; set { SetProperty(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 BBWYApiHost { get; set; }

        public string MDSApiHost { get; set; }
        #endregion
    }
}