model structs that are not used yet

This commit is contained in:
James Tombleson 2024-03-26 17:54:46 -07:00
parent bbdbb38711
commit dbe621ca05
2 changed files with 16 additions and 0 deletions

12
api/models/recipe.go Normal file
View File

@ -0,0 +1,12 @@
package models
import "time"
type RecipeModel struct {
Id int32
Title string
Thumbnail string
Content string
CreatedAt time.Time
LastUpdated time.Time
}

View File

@ -9,3 +9,7 @@ type UserModel struct {
CreatedAt time.Time
LastUpdated time.Time
}
type UserDto struct {
}