aboutsummaryrefslogtreecommitdiff
path: root/api/internal/models/user.go
blob: 2a3e6fd127ff3997eb99f717eb78b565bfafeade (plain)
1
2
3
4
5
6
7
8
9
10
package models

import "github.com/google/uuid"

type User struct {
	ID       int64     `json:"-"`
	Name     string    `json:"name"`
	UUID     uuid.UUID `json:"uuid"`
	Password string    `json:"-"`
}