NodeConfig.cs 241 B

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