summaryrefslogtreecommitdiff
path: root/model/user.go
blob: 4959371ecc779ed8849f7dd1dc8e1671910c207e (plain)
1
2
3
4
5
6
7
8
package model

type User struct {
	Id       UUID
	Name     string
	Salt     string
	Password []byte
}