Remove unused model

This commit is contained in:
Gabe Kangas 2021-02-23 11:23:51 -08:00
parent 68eecab29b
commit 8f1681c7aa

View File

@ -1,12 +0,0 @@
package models
import "time"
// ChatActionEvent represents a generic action that took place by a chat user.
type ChatActionEvent struct {
Username string `json:"username"`
Type EventType `json:"type"`
ID string `json:"id"`
Timestamp time.Time `json:"timestamp,omitempty"`
Message string `json:"message,omitempty"`
}