I want to use Session
values from static properties of a static class which is declared in another referenced project. Some of the properties are per application and some are per user:
public class MyClass
{
public static string var1 { get; set; } //Always static
public static string var2 { get; set; } //Need to use Session[Var2]
public static string var3 { get; set; } //Always static
public static string var4 { get; set; } //Need to use Session[Var4]
}