using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ArdupilotMega.Controls
{
public interface IDynamicParameterControl
{
///
/// Gets the name.
///
///
/// The name.
///
string Name { get; set; }
///
/// Gets the value.
///
///
/// The value.
///
string Value { get; set; }
}
}