api-practice-go/models/album.go

9 lines
160 B
Go
Raw Normal View History

2023-11-25 17:29:17 -05:00
package models
type Album struct {
ID string `json:"id"`
Title string `json:"title"`
Artist string `json:"artist"`
Price float64 `json:"price"`
}