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.
12 lines
383 B
12 lines
383 B
namespace ArdupilotMega.Utilities |
|
{ |
|
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"; |
|
} |
|
}
|
|
|