Files
CapMachine/CapMachine.Wpf/Services/IApplicationContext.cs
Tyrone CT e49a48fb25 增加了初始弹窗,但是没有成功
更改了CAN和LIN协调
更改了配置程序的名称顺序
2025-01-11 12:04:34 +08:00

32 lines
805 B
C#

using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CapMachine.Wpf.Services
{
public interface IApplicationContext
{
//[CanBeNull]
//TenantInformation CurrentTenant { get; }
//AbpUserConfigurationDto Configuration { get; set; }
//GetCurrentLoginInformationsOutput LoginInfo { get; }
//void ClearLoginInfo();
//void SetLoginInfo(GetCurrentLoginInformationsOutput loginInfo);
//void SetAsHost();
//void SetAsTenant(string tenancyName, int tenantId);
//LanguageInfo CurrentLanguage { get; set; }
//void Load(TenantInformation currentTenant, GetCurrentLoginInformationsOutput loginInfo);
}
}