- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace EapClientSimulator
- {
- public class RemoteCommand
- {
- public string Command { get; set; }
- public List<RemoteParameter> RemoteParameters { get; set; } = new List<RemoteParameter>();
- }
- }
|