13 lines
184 B
Go
13 lines
184 B
Go
package models
|
|
|
|
import "time"
|
|
|
|
type RecipeModel struct {
|
|
Id int32
|
|
Title string
|
|
Thumbnail string
|
|
Content string
|
|
CreatedAt time.Time
|
|
LastUpdated time.Time
|
|
}
|