Camera Information System
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.

30 lines
841 B

namespace EC.Helper.Onvif.RemoteDiscovery;
public class DiscoveryDevice
{
/// <summary>
/// The types of this onvif device. ex: NetworkVideoTransmitter
/// </summary>
public List<string> Types { get; internal set; }
/// <summary>
/// The XAddresses of this device, the url on which the device has the webservices.
/// Normally in the form of: http://{IP}:{Port}/onvif/device_service
/// </summary>
public List<string> XAdresses { get; internal set; }
/// <summary>
/// The onvif device model
/// </summary>
public string Model { get; internal set; }
/// <summary>
/// The device manufacturer
/// </summary>
public string Mfr { get; internal set; }
/// <summary>
/// The device IP address
/// </summary>
public string Address { get; internal set; }
}