10 lines
226 B
Go
10 lines
226 B
Go
|
package entities
|
||
|
|
||
|
type Pastry struct {
|
||
|
ID int `json:"id"`
|
||
|
Name string `json:"name"`
|
||
|
Description string `json:"description"`
|
||
|
Price float64 `json:"price"`
|
||
|
Category string `json:"category"`
|
||
|
}
|