diff --git a/modules/structs/userAction.go b/modules/structs/userAction.go new file mode 100644 index 0000000..a00d5a3 --- /dev/null +++ b/modules/structs/userAction.go @@ -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 +}