GREET API
Exposed interfaces to create modules that can be loaded in GREET
 All Classes Namespaces Files Functions Enumerations Enumerator Properties Events
IDependentItem.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 {
13  [Obfuscation(Feature = "renaming", Exclude = true)]
14  public interface IDependentItem : IEquatable<IDependentItem>
15  {
19  [Obfuscation(Feature = "renaming", Exclude = true)]
20  int Id { get; }
24  [Obfuscation(Feature = "renaming", Exclude = true)]
25  String Name { get; }
29  [Obfuscation(Feature = "renaming", Exclude = true)]
30  int Resource { get; }
34  [Obfuscation(Feature = "renaming", Exclude = true)]
35  String ResourceName { get; }
39  [Obfuscation(Feature = "renaming", Exclude = true)]
40  String TypeName { get; }
44  [Obfuscation(Feature = "renaming", Exclude = true)]
52  [Obfuscation(Feature = "renaming", Exclude = true)]
53  bool Equals(IDependentItem other);
54  }
55 }
An idependent item represents the chain of dependency between entities in GREET for instance...
itemType
Possible type for DependentItem
Definition: PluginEnums.cs:31