GREET API
Exposed interfaces to create modules that can be loaded in GREET
 All Classes Namespaces Files Functions Enumerations Enumerator Properties Events
IUnit.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 IUnit
14  {
18  [Obfuscation(Feature = "renaming", Exclude = true)]
19  string Name { get; }
23  [Obfuscation(Feature = "renaming", Exclude = true)]
24  string DisplayName { get; }
28  [Obfuscation(Feature = "renaming", Exclude = true)]
29  string Abbrev { get; set; }
34  [Obfuscation(Feature = "renaming", Exclude = true)]
35  string ToDefaultStr { get; }
40  [Obfuscation(Feature = "renaming", Exclude = true)]
41  string FromDefaultStr { get; }
42 
43  }
44 }
A unit in our unit system
Definition: IUnit.cs:13