14 lines
226 B
Go
14 lines
226 B
Go
package models
|
|
|
|
// SerieResume resume of the serie.
|
|
type SerieResume struct {
|
|
// ID of the serie.
|
|
ID string `json:"id"`
|
|
|
|
// Name of the serie.
|
|
Name string `json:"name"`
|
|
|
|
// Logo of the serie.
|
|
Logo string `json:"logo"`
|
|
}
|