You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Koito/internal/models/alias.go

9 lines
165 B

package models
type Alias struct {
ID int32 `json:"id"`
Alias string `json:"alias"`
Source string `json:"source"`
Primary bool `json:"is_primary"`
}