mirror of
https://github.com/cedricve/go-onvif.git
synced 2025-09-27 12:52:15 +08:00
11 lines
165 B
Go
11 lines
165 B
Go
package onvif
|
|
|
|
// Device contains data of Onvif device
|
|
type Device struct {
|
|
ID string
|
|
Name string
|
|
XAddrs []string
|
|
User string
|
|
Password string
|
|
}
|