13 lines
391 B
Go
13 lines
391 B
Go
package routes
|
|
|
|
type Simulation struct {
|
|
ID int `json:"id"`
|
|
Name string `json:"name"`
|
|
Resources []string `json:"resources"`
|
|
CreatedAt string `json:"created_at"`
|
|
Config *string `json:"config"`
|
|
SearchTime *float64 `json:"search_time"`
|
|
TotalTime *float64 `json:"total_time"`
|
|
TotalSizeBytes int64 `json:"total_size_bytes"`
|
|
}
|