14 lines
338 B
Go
14 lines
338 B
Go
package data
|
|
|
|
import "time"
|
|
|
|
type Movie struct {
|
|
ID int64 `json:"id"`
|
|
CreatedAt time.Time `json:"-"`
|
|
Title string `json:"title"`
|
|
Year int32 `json:"year,omitempty"`
|
|
Runtime Runtime `json:"runtime,omitempty,string"`
|
|
Genres []string `json:"gentres,omitempty"`
|
|
Version int32 `json:"version"`
|
|
}
|