1234567891011121314151617 |
- using SecsGem.Core.ItemModel;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace EapClientSimulator
- {
- public class RemoteParameter
- {
- public string Name { get; set; }
- public Item Value { get; set; }
- }
- }
|