Files
galaxy-game/game/internal/model/game/fleet.go
T
Ilia Denisov 9ade76e21d fs storage
2026-03-13 21:07:23 +02:00

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"`
}