namespace MultiTerm.Protocols.Udp;
internal interface IUdpProtocolSettings : IProtocolSettings
{
///
/// Hostname to connect to.
/// Can be a hostname with or without domain or an IPv4/IVv6 address.
///
string Hostname {get; internal set; }
///
/// Port of the end device. Will also be the port that is listened on.
///
int Port { get; internal set; }
}