You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
383 B
13 lines
383 B
13 years ago
|
namespace ArdupilotMega.Utilities
|
||
13 years ago
|
{
|
||
|
public sealed class ParameterMetaDataConstants
|
||
|
{
|
||
|
public const string Delimeter = "@";
|
||
|
public const string Param = "Param";
|
||
|
public const string DisplayName = "DisplayName";
|
||
|
public const string Description = "Description";
|
||
|
public const string Units = "Units";
|
||
|
public const string Range = "Range";
|
||
|
}
|
||
|
}
|