22 lines
336 B
Go
22 lines
336 B
Go
|
package domain
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type UserEntity struct {
|
||
|
Id int
|
||
|
CreatedAt time.Time
|
||
|
LastUpdated time.Time
|
||
|
Name string
|
||
|
Hash string
|
||
|
Scopes string
|
||
|
}
|
||
|
|
||
|
type RecipeEntity struct {
|
||
|
Id int32
|
||
|
CreatedAt time.Time
|
||
|
LastUpdated time.Time
|
||
|
Title string
|
||
|
Thumbnail string
|
||
|
Content string
|
||
|
}
|