aboutsummaryrefslogtreecommitdiff
path: root/models/merge.go
blob: 69011f3f3735ce97f5202852f772c4a52351aa07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package models

type ForeignID struct {
	ID     int `json:"id"`
	Mapped int `json:"mapped"`
}

type Merge struct {
	ID       int         `json:"id"`
	Name     string      `json:"name"`
	ImageURL string      `json:"image_url"`
	Targets  []MergeGril `json:"targets"`
}

type MergeGril struct {
	ID       int      `json:"id"`
	Name     string   `json:"name"`
	ImageURL string   `json:"image_url"`
	Series   []string `json:"series"`
}