2012-04-25 07:10:11 -03:00
|
|
|
|
namespace ArdupilotMega.Utilities
|
2012-04-24 18:27:05 -03:00
|
|
|
|
{
|
|
|
|
|
public sealed class ParameterMetaDataConstants
|
|
|
|
|
{
|
2012-04-25 21:01:08 -03:00
|
|
|
|
#region Markers
|
|
|
|
|
|
|
|
|
|
public const string ParamDelimeter = "@";
|
|
|
|
|
public const string PathDelimeter = ",";
|
2012-04-24 18:27:05 -03:00
|
|
|
|
public const string Param = "Param";
|
2012-04-25 21:01:08 -03:00
|
|
|
|
public const string Group = "Group";
|
|
|
|
|
public const string Path = "Path";
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Meta Keys
|
|
|
|
|
|
2012-04-24 18:27:05 -03:00
|
|
|
|
public const string DisplayName = "DisplayName";
|
|
|
|
|
public const string Description = "Description";
|
|
|
|
|
public const string Units = "Units";
|
|
|
|
|
public const string Range = "Range";
|
2012-04-25 21:01:08 -03:00
|
|
|
|
|
|
|
|
|
#endregion
|
2012-04-24 18:27:05 -03:00
|
|
|
|
}
|
2012-04-25 21:01:08 -03:00
|
|
|
|
}
|