added qmqx gorm models for trackers

This commit is contained in:
tdv
2025-11-28 17:42:51 +02:00
parent 2ba75d0e87
commit 50acf14fe1
3 changed files with 36 additions and 1 deletions

View File

@@ -19,7 +19,9 @@ type DeviceCertDto struct {
}
type DeviceCertListDto struct {
Certs []DeviceCertDto `json:"certs"`
Certs []DeviceCertDto `json:"certs"`
Offset int `json:"offset"`
Limit int `json:"limit"`
}
func MapDeviceCert(c models.DeviceCertificate) DeviceCertDto {