10 lines
222 B
Go
10 lines
222 B
Go
|
package entities
|
||
|
|
||
|
type Coffee struct {
|
||
|
ID int `json:"id"`
|
||
|
Name string `json:"name"`
|
||
|
Description string `json:"description"`
|
||
|
Price float64 `json:"price"`
|
||
|
Size string `json:"size"`
|
||
|
}
|