19 lines
510 B
Go
19 lines
510 B
Go
package model
|
|
|
|
import "time"
|
|
|
|
type Map struct {
|
|
ID int64
|
|
DisplayName string
|
|
Creator string
|
|
GameID uint32
|
|
Date time.Time // Release date
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
Submitter uint64 // UserID of submitter
|
|
Thumbnail uint64 // AssetID of thumbnail
|
|
AssetVersion uint64 // Version number for LoadAssetVersion
|
|
LoadCount uint32 // How many times the map has been loaded
|
|
Modes uint32 // Number of modes (always at least one)
|
|
}
|