GREET API
Exposed interfaces to create modules that can be loaded in GREET
 All Classes Namespaces Files Functions Enumerations Enumerator Properties Events
ITransportationProcess.cs
Go to the documentation of this file.
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Reflection;
6 
7 namespace PlugInsInterfaces.DataTypes.Process.Transportation
8 {
12  [Obfuscation(Feature = "renaming", Exclude = true)]
13  public interface ITransportationProcess
14  {
18  [Obfuscation(Feature = "renaming", Exclude = true)]
19  List<ITransportationStep> TransportationStepss { get; }
20  }
21 }
Definition of a transportation process: a list of steps and edges between them