This repository has been archived on 2024-12-29. You can view files and clone it, but cannot push or open issues or pull requests.
flucky/pkg/types/device.go

13 lines
329 B
Go

package types
import "time"
// Device ...
type Device struct {
DeviceID string `json:"device_id"`
DeviceName string `json:"device_name"`
DeviceLocation *string `json:"device_location"`
DeviceLastContact time.Time `json:"device_last_contact"`
CreationDate time.Time `json:"creation_date"`
}