16 lines
267 B
Go
16 lines
267 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
|
||
|
|
}
|