mirror of
https://github.com/cedricve/go-onvif.git
synced 2025-10-05 16:47:07 +08:00
11 lines
163 B
Go
11 lines
163 B
Go
package onvif
|
|
|
|
// Device contains data of ONVIF camera
|
|
type Device struct {
|
|
ID string
|
|
Name string
|
|
XAddr string
|
|
User string
|
|
Password string
|
|
}
|