RemoteParameter.cs 310 B

1234567891011121314151617
  1. using SecsGem.Core.ItemModel;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace EapClientSimulator
  8. {
  9. public class RemoteParameter
  10. {
  11. public string Name { get; set; }
  12. public Item Value { get; set; }
  13. }
  14. }