mirror of
https://github.com/kataras/iris.git
synced 2025-12-19 02:47:04 +00: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"`
|
|
}
|