mirror of
https://github.com/warmbly/warmbly.git
synced 2026-08-19 16:01:16 +00:00
13 lines
197 B
Go
13 lines
197 B
Go
package models
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type Order struct {
|
|
ID uuid.UUID `json:"id"`
|
|
Position int32 `json:"position"`
|
|
}
|
|
|
|
type Move struct {
|
|
Position int32 `json:"position"`
|
|
}
|