go-cook/api/models/recipe.go

13 lines
184 B
Go
Raw Normal View History

2024-03-26 17:54:46 -07:00
package models
import "time"
type RecipeModel struct {
Id int32
Title string
Thumbnail string
Content string
CreatedAt time.Time
LastUpdated time.Time
}