7 lines
89 B
Go
7 lines
89 B
Go
package model
|
|
|
|
type Brand struct {
|
|
ID int `json:"id"`
|
|
Name string `json:"name"`
|
|
}
|