GlobalVar.cs 499 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. using System.Linq;
  6. using System.Runtime.CompilerServices;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace GDNXFD.Alert.Config
  10. {
  11. public class GlobalVar
  12. {
  13. private GlobalVar()
  14. {
  15. }
  16. /// <summary>
  17. /// 当前登录的用户
  18. /// </summary>
  19. public static string CurrentUser { get; set; }
  20. }
  21. }