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() { } /// /// 当前登录的用户 /// public static string CurrentUser { get; set; } } }