Basf_EProject/EProject/BLL/SessionName.cs

13 lines
203 B
C#
Raw Normal View History

2024-05-08 11:01:54 +08:00
namespace BLL
{
using System;
public static class SessionName
{
/// <summary>
/// 用户
/// </summary>
public const string CurrUser = "CurrUser";
}
}