Files
evening_detective_server/internal/repos/user.go
T
2026-07-02 03:30:51 +07:00

11 lines
160 B
Go

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