Added userAction struct

master
Alex 2021-07-12 20:29:42 +02:00
parent 22f0ef0c06
commit 962fc38532
1 changed files with 13 additions and 0 deletions

View File

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