NodeConfig.cs 198 B

12345678910
  1. using System.Collections.Generic;
  2. namespace Model
  3. {
  4. public class NodeConfig: AConfig
  5. {
  6. public List<string> Args { get; set; }
  7. public List<NodeConfig> SubConfigs { get; set; }
  8. }
  9. }