Files
evening_detective_server/internal/repos/user.go
T
2026-07-06 12:58:27 +07:00

11 lines
159 B
Go

package repos
type User struct {
ID int
Username string
Email string
PasswordHash string
Roles []string
IsActive bool
}