GREET API
Exposed interfaces to create modules that can be loaded in GREET
 All Classes Namespaces Files Functions Enumerations Enumerator Properties Events
IParameter.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
8 {
12  [Obfuscation(Feature = "renaming", Exclude = true)]
13  public interface IParameter
14  {
18  [Obfuscation(Feature = "renaming", Exclude = true)]
19  string Id { get; }
20 
24  [Obfuscation(Feature = "renaming", Exclude = true)]
25  string UnitGroupName { get; }
26 
30  [Obfuscation(Feature = "renaming", Exclude = true)]
31  double GreetValue { get; set; }
32 
36  [Obfuscation(Feature = "renaming", Exclude = true)]
37  double UserValue { get; set; }
38 
43  [Obfuscation(Feature = "renaming", Exclude = true)]
44  bool UseOriginal { get; set; }
45  }
46 }
Class that represents a value and unit
Definition: IParameter.cs:13