aboutsummaryrefslogtreecommitdiff
path: root/pkg/model/users.go
blob: dfef67b57e57b42ecc710e870494445df5b43ef7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package model

import "time"

type User struct {
	Id            int        `json:"id"`
	Username      string     `json:"username"`
	Email         string     `json:"email"`
	Created_at    *time.Time `json:"created_at"`
	Last_login_at *time.Time `json:"last_login_at"`
}

type UserRegistration struct {
	Username string `json:"username"`
	Password string `json:"password"`
	Email    string `json:"email"`
}