9 lines
160 B
Go
9 lines
160 B
Go
|
package models
|
||
|
|
||
|
type Album struct {
|
||
|
ID string `json:"id"`
|
||
|
Title string `json:"title"`
|
||
|
Artist string `json:"artist"`
|
||
|
Price float64 `json:"price"`
|
||
|
}
|