Files
Shrlalgo.RvKits/WPFUI.Test/GlobalVariables.cs
2026-01-01 10:02:59 +08:00

17 lines
419 B
C#

using System.Reflection;
using WPFUI.Test.Web;
namespace WPFUI.Test;
public class GlobalVariables
{
public static string AddInPath = Assembly.GetExecutingAssembly().Location;
public static string DirAssembly = Path.GetDirectoryName(AddInPath);
public static AuthenticationService AuthenticationService { get; } = new AuthenticationService();
public static bool IsLogin { get; set; } = false;
}