| 123456789101112131415161718192021222324252627282930313233343536 |
- package models
- import (
- "time"
- )
- type LoginAttempt struct {
- Id int64
- Username string
- IpAddress string
- Created int64
- }
- // ---------------------
- // COMMANDS
- type CreateLoginAttemptCommand struct {
- Username string
- IpAddress string
- Result LoginAttempt
- }
- type DeleteOldLoginAttemptsCommand struct {
- OlderThan time.Time
- DeletedRows int64
- }
- // ---------------------
- // QUERIES
- type GetUserLoginAttemptCountQuery struct {
- Username string
- Since time.Time
- Result int64
- }
|