24 lines
719 B
C#
24 lines
719 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BenchtopParser {
|
|
public class ProgramConfig {
|
|
public String? ProgramNumber { get; set; }
|
|
public Dictionary<String, Dictionary<String, Configuration>> Group { get; set; }
|
|
|
|
public ProgramConfig() {
|
|
this.Group = new Dictionary<String, Dictionary<String, Configuration>>();
|
|
}
|
|
}
|
|
public class Configuration {
|
|
public String? name { get; set; }
|
|
public String? value { get; set; }
|
|
public String? type { get; set; }
|
|
public String? unit { get; set; }
|
|
|
|
}
|
|
}
|