12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Linq;
- using System.Runtime.CompilerServices;
- using System.Text;
- using System.Threading.Tasks;
- namespace GDNXFD.Alert.Config
- {
- public class GlobalVar
- {
- private GlobalVar()
- {
- }
- /// <summary>
- /// 当前登录的用户
- /// </summary>
- public static string CurrentUser { get; set; }
- }
- }
|