package models import "time" type RecipeModel struct { Id int32 Title string Thumbnail string Content string CreatedAt time.Time LastUpdated time.Time }