using System.Collections.Generic; namespace EC.Onvif.RemoteDiscovery { public class DiscoveryDevice { /// /// The types of this onvif device. ex: NetworkVideoTransmitter /// public List Types { get; internal set; } /// /// 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 /// public List XAdresses { get; internal set; } /// /// The onvif device model /// public string Model { get; internal set; } /// /// The device manufacturer /// public string Mfr { get; internal set; } /// /// The device IP address /// public string Address { get; internal set; } } }