File size: 177 Bytes
2196bfe
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
package models

import "gorm.io/gorm"

type Latency struct {
	gorm.Model
	MonitorID uint `json:"monitorId"`
	Latency   uint `json:"latency"` // Latency in milliseconds
}