GlobalData.cs 266 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Net.Sockets;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace EapClientSimulator
  8. {
  9. public class GlobalData
  10. {
  11. public static EapClient Client = null;
  12. }
  13. }