17 lines
287 B
Go
17 lines
287 B
Go
package domain
|
|
|
|
import "time"
|
|
|
|
type SpecTrial struct {
|
|
ID string
|
|
TaskID string
|
|
Attempt int
|
|
ProductTitle string
|
|
SelectedColor string
|
|
SelectedSize string
|
|
UnitPrice string
|
|
TotalPrice string
|
|
EvidenceSHA256 string
|
|
CreatedAt time.Time
|
|
}
|