2024-11-26 21:36:40 +00:00
|
|
|
package model
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
2024-11-26 23:30:58 +00:00
|
|
|
type Submission struct {
|
2024-11-26 23:55:50 +00:00
|
|
|
ID int64
|
|
|
|
DisplayName string
|
|
|
|
Creator string
|
|
|
|
GameID int32
|
|
|
|
Date time.Time
|
|
|
|
Submitter int64 // UserID
|
|
|
|
AssetID int64
|
|
|
|
AssetVersion int64
|
|
|
|
Completed bool
|
|
|
|
TargetAssetID int64 // where to upload map fix. if the TargetAssetID is 0, it's a new map.
|
|
|
|
StatusID int32
|
2024-11-26 21:36:40 +00:00
|
|
|
}
|