Files
evening_detective_server/internal/repos/user.go
T
2026-07-04 13:09:39 +07:00

11 lines
157 B
Go

package repos
type User struct {
ID int
Username string
Email string
PasswordHash string
Role string
IsActive bool
}