blob: 1c2b80b249a7e5ec1f1a999d44311b7a536f4540 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package model
type Agent struct {
AccountID string `json:"accountId"`
Credits int `json:"credits"`
Headquarters string `json:"headquarters"`
ShipCount int `json:"shipCount"`
StartingFaction string `json:"startingFaction"`
Symbol string `json:"symbol"`
}
|