2012-04-25 14:11:44 -03:00
|
|
|
|
namespace ArdupilotMega.Utilities.Constants
|
|
|
|
|
{
|
|
|
|
|
public sealed class ParameterMetaDataConstants
|
|
|
|
|
{
|
|
|
|
|
#region Markers
|
|
|
|
|
|
|
|
|
|
public const string ParamDelimeter = "@";
|
|
|
|
|
public const string PathDelimeter = ",";
|
|
|
|
|
public const string Param = "Param";
|
2012-04-25 14:27:51 -03:00
|
|
|
|
public const string Group = "Group";
|
2012-04-25 14:11:44 -03:00
|
|
|
|
public const string Path = "Path";
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Meta Keys
|
|
|
|
|
|
|
|
|
|
public const string DisplayName = "DisplayName";
|
|
|
|
|
public const string Description = "Description";
|
|
|
|
|
public const string Units = "Units";
|
|
|
|
|
public const string Range = "Range";
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|