using RGB.NET.Devices.SoIP.Generic;
namespace RGB.NET.Devices.SoIP.Client
{
public class SoIPClientDeviceDefinition : ISoIPDeviceDefinition
{
#region Properties & Fields
///
/// Gets or sets the hostname of the device.
///
public string Hostname { get; set; }
///
/// Gets or sets the port to device is listening to.
///
public int Port { get; set; }
///
/// Gets or sets the manufacturer of the device.
///
public string Manufacturer { get; set; } = "Unknown";
///
/// Gets or sets the model name of the device.
///
public string Model { get; set; } = "Generic SoIP-Device";
#endregion
#region Constructors
public SoIPClientDeviceDefinition(string hostname, int port)
{
this.Hostname = hostname;
this.Port = port;
}
#endregion
}
}