GREET API
Exposed interfaces to create modules that can be loaded in GREET
 All Classes Namespaces Files Functions Enumerations Enumerator Properties Events
ILocation.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 ILocation : IXmlObj
14  {
18  [Obfuscation(Feature = "renaming", Exclude = true)]
19  string Name { get; set; }
24  [Obfuscation(Feature = "renaming", Exclude = true)]
25  string PictureName { get; set; }
29  [Obfuscation(Feature = "renaming", Exclude = true)]
30  int Id { get; set; }
31 
32 
33  }
34 }
Class that represents a location for a transportation process
Definition: ILocation.cs:13