GREET API
Exposed interfaces to create modules that can be loaded in GREET
 All Classes Namespaces Files Functions Enumerations Enumerator Properties Events
IGroup.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 {
9  [Obfuscation(Feature = "renaming", Exclude = true)]
10  public interface IGroup : IXmlObj
11  {
12  [Obfuscation(Feature = "renaming", Exclude = true)]
13  int Id { get; set; }
14 
15 
16  [Obfuscation(Feature = "renaming", Exclude = true)]
17  string Name { get; set; }
18 
19  [Obfuscation(Feature = "renaming", Exclude = true)]
20  List<int> IncludeInGroups { get; set; }
21 
22  [Obfuscation(Feature = "renaming", Exclude = true)]
23  string Notes { get; set; }
24 
25  }
26 }