10 lines
169 B
Go
10 lines
169 B
Go
package game
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type Fleet struct {
|
|
ID uuid.UUID `json:"id"`
|
|
OwnerID uuid.UUID `json:"ownerId"`
|
|
Name string `json:"name"`
|
|
}
|