18 lines
344 B
Go
18 lines
344 B
Go
package model
|
|
|
|
import "time"
|
|
|
|
type UserData struct {
|
|
UserEditable
|
|
ID string `json:"id"`
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
UpdatedAt *time.Time `json:"updatedAt"`
|
|
}
|
|
|
|
type UserDataEditable struct {
|
|
UserId string `json:'userId'`
|
|
Type string `json:"type"`
|
|
Name string `json:"name"`
|
|
Content string `json:"content"`
|
|
}
|