Added UserActivation struct

master
Alex 2021-06-27 21:29:12 +02:00
parent 8184f5ba73
commit 663ab5f2f2
1 changed files with 13 additions and 0 deletions

View File

@ -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
}