Added userAction struct
parent
22f0ef0c06
commit
962fc38532
|
@ -0,0 +1,13 @@
|
||||||
|
package structs
|
||||||
|
|
||||||
|
import (
|
||||||
|
"time"
|
||||||
|
)
|
||||||
|
|
||||||
|
// UserAction represents a user action
|
||||||
|
// swagger:model
|
||||||
|
type UserAction struct {
|
||||||
|
Id string
|
||||||
|
UserId string
|
||||||
|
Expires time.Time
|
||||||
|
}
|
Loading…
Reference in New Issue