nidus-sync/platform/type.go
Eli Ribble 53e08d840e Get nidus-sync building again
This fleshes out more of the basic platform patterns, though there's
still plenty that isn't working yet.
2026-01-05 02:06:34 +00:00

21 lines
449 B
Go

package platform
import (
"time"
"github.com/Gleipnir-Technology/nidus-sync/db/models"
)
type ClientSync struct {
Fieldseeker FieldseekerRecordsSync
Since time.Time
}
type FieldseekerRecordsSync struct {
MosquitoSources models.FieldseekerPointlocationSlice
}
type MosquitoSource struct {
PointLocation *models.FieldseekerPointlocation
Inspections *models.FieldseekerMosquitoinspectionSlice
Treatments *models.FieldseekerTreatmentSlice
}