Files
SzmediTools/WPFUI.Test/GlobalVariables.cs

17 lines
419 B
C#
Raw Permalink Normal View History

2025-09-16 16:06:41 +08:00

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;
}