draincloud-core/internal/storage/models/auth.go

13 lines
184 B
Go
Raw Normal View History

2024-09-27 22:37:58 +00:00
package models
import "time"
type User struct {
ID uint64
Username string
Login string
PasswordHash []byte
CreatedAt time.Time
UpdatedAt time.Time
}