mirror of
https://github.com/luscis/openlan.git
synced 2025-10-05 16:47:11 +08:00
10 lines
198 B
Go
10 lines
198 B
Go
package schema
|
|
|
|
type Qos struct {
|
|
Name string `json:"name"`
|
|
Device string `json:"device"`
|
|
Ip string `json:"ip"`
|
|
InSpeed int64 `json:"inSpeed"`
|
|
OutSpeed int64 `json:"outSpeed"`
|
|
}
|