1
2
3
4
5
6
7
8
9
10
11
12
| using System.Collections.Generic;
|
| namespace IStation.Algorithm.Source
| {
| public class PumpSchedulingPlan
| {
| public string SchedulingName { get; set; }
|
| public List<PumpSchedulingOperationPlan> Operations { get; set; } = new List<PumpSchedulingOperationPlan>();
|
| }
| }
|
|