GREET API
Exposed interfaces to create modules that can be loaded in GREET
 All Classes Namespaces Files Functions Enumerations Enumerator Properties Events
IMix.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.Mix
8 {
12  [Obfuscation(Feature = "renaming", Exclude = true)]
13  public interface IMix : IXmlObj
14  {
18  [Obfuscation(Feature = "renaming", Exclude = true)]
19  string Name { get; set; }
20 
24  [Obfuscation(Feature = "renaming", Exclude = true)]
25  int Id { get; set; }
26 
30  [Obfuscation(Feature = "renaming", Exclude = true)]
31  List<IFuelProductionEntity> FuelProductionEntities { get; }
32 
36  [Obfuscation(Feature = "renaming", Exclude = true)]
37  int MainOutputResourceID { get; }
38 
39  }
40 }
A mix defines fuel production entities and shares for them
Definition: IMix.cs:13