mirror of
https://github.com/cedricve/go-onvif.git
synced 2025-10-04 08:16:29 +08:00
20 lines
376 B
Go
20 lines
376 B
Go
package onvif
|
|
|
|
// Device contains data of ONVIF camera
|
|
type Device struct {
|
|
ID string
|
|
Name string
|
|
XAddr string
|
|
User string
|
|
Password string
|
|
}
|
|
|
|
// DeviceInformation contains information of ONVIF camera
|
|
type DeviceInformation struct {
|
|
FirmwareVersion string
|
|
HardwareID string
|
|
Manufacturer string
|
|
Model string
|
|
SerialNumber string
|
|
}
|