GREET API
Exposed interfaces to create modules that can be loaded in GREET
 All Classes Namespaces Files Functions Enumerations Enumerator Properties Events
ITransportationStep.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 ITransportationStep
14  {
18  [Obfuscation(Feature = "renaming", Exclude = true)]
19  int ModeReference { get; }
20 
24  [Obfuscation(Feature = "renaming", Exclude = true)]
25  int OriginReference { get; }
26 
30  [Obfuscation(Feature = "renaming", Exclude = true)]
31  int DestinationReference { get; }
32  }
33 }
Definition of a transportation step, contains a reference to the mode used and parameters for that st...