Files
app-api/internal/model/user_device.go
T

12 lines
138 B
Go
Raw Normal View History

package model
import "time"
type UserDevice struct {
ID int
MacAddr string
Model string
AddTime time.Time
Ver *string
}