mirror of
https://github.com/nezhahq/nezha.git
synced 2025-01-22 12:48:14 -05:00
13 lines
223 B
Go
13 lines
223 B
Go
package model
|
|
|
|
type ServiceItemResponse struct {
|
|
Monitor *Monitor
|
|
TotalUp uint64
|
|
TotalDown uint64
|
|
CurrentUp uint64
|
|
CurrentDown uint64
|
|
Delay *[30]float32
|
|
Up *[30]int
|
|
Down *[30]int
|
|
}
|