mirror of https://github.com/ArduPilot/ardupilot
13 lines
383 B
C#
13 lines
383 B
C#
|
namespace ArdupilotMega.Constants
|
|||
|
{
|
|||
|
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";
|
|||
|
}
|
|||
|
}
|