8 lines
130 B
Go
8 lines
130 B
Go
package model
|
|
|
|
type Episodes struct {
|
|
First int `json:"first"`
|
|
Last int `json:"last"`
|
|
String string `json:"string"`
|
|
}
|