mirror of
https://github.com/kataras/iris.git
synced 2025-01-26 03:56:34 +01:00
12 lines
222 B
Go
12 lines
222 B
Go
|
// file: models/movie.go
|
||
|
|
||
|
package models
|
||
|
|
||
|
// Movie is our sample data structure.
|
||
|
type Movie struct {
|
||
|
Name string `json:"name"`
|
||
|
Year int `json:"year"`
|
||
|
Genre string `json:"genre"`
|
||
|
Poster string `json:"poster"`
|
||
|
}
|