10 lines
227 B
C#
10 lines
227 B
C#
namespace UniversityEmpoyeeApp
|
|
{
|
|
public static class SessionKeys
|
|
{
|
|
public const string EmployeeLogin = "AuthenticationLogin";
|
|
public const string EmployeePassword = "AuthenticationPassword";
|
|
|
|
}
|
|
}
|