namespace PepperDash.Core.Abstractions;
///
/// Abstracts Crestron.SimplSharp.CrestronEthernetHelper to allow unit testing
/// without the Crestron SDK.
///
public interface IEthernetHelper
{
///
/// Returns a network parameter string for the specified adapter.
///
/// The parameter to retrieve.
/// Ethernet adapter index (0 = LAN A).
/// String value of the requested parameter.
string GetEthernetParameter(EthernetParameterType parameter, short ethernetAdapterId);
}