Added UserActivation struct
parent
8184f5ba73
commit
663ab5f2f2
|
@ -0,0 +1,13 @@
|
|||
package structs
|
||||
|
||||
import (
|
||||
"time"
|
||||
)
|
||||
|
||||
// UserActivation represents a user activation
|
||||
// swagger:model
|
||||
type UserActivation struct {
|
||||
Id string
|
||||
UserId string
|
||||
Expires time.Time
|
||||
}
|
Loading…
Reference in New Issue