ChengDa_English/SGGL/BLL/SessionName.cs

13 lines
203 B
C#
Raw Normal View History

2022-03-15 17:36:38 +08:00
namespace BLL
{
using System;
public static class SessionName
{
/// <summary>
/// 用户
/// </summary>
public const string CurrUser = "CurrUser";
}
}