mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-20 23:58:43 -04:00
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";
|
|
}
|
|
}
|