RestApiv2/internal/bd/model/user.go

11 lines
204 B
Go
Raw Normal View History

package model
type User struct {
Id int
2023-04-14 17:35:25 +03:00
Login string `json:"login"`
Email string `json:"email"`
Password string `json:"password"`
Avatar_Url string
PermisionLVL int
}