GREET API
Exposed interfaces to create modules that can be loaded in GREET
 All Classes Namespaces Files Functions Enumerations Enumerator Properties Events
IProcess.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.DataManipulation
8 {
9  [Obfuscation(Feature = "renaming", Exclude = true)]
10  public interface IProcess : IXmlObj
11  {
15  [Obfuscation(Feature = "renaming", Exclude = true)]
16  string Name { get; set; }
20  [Obfuscation(Feature = "renaming", Exclude = true)]
21  int Id { get; set; }
22 
26  [Obfuscation(Feature = "renaming", Exclude = true)]
27  int MainOutputResourceID { get; }
28 
29 
33  [Obfuscation(Feature = "renaming", Exclude = true)]
34  List<int> OutputEmissionsIds { get; }
35 
36 
37  //[Obfuscation(Feature = "renaming", Exclude = true)]
38 
39  //[Obfuscation(Feature = "renaming", Exclude = true)]
40 
41  //[Obfuscation(Feature = "renaming", Exclude = true)]
42 
43 
44  }
45 }