linstrom/storage/reactions.go

11 lines
129 B
Go
Raw Permalink Normal View History

2024-11-18 11:18:57 +00:00
package storage
import "gorm.io/gorm"
type Reaction struct {
gorm.Model
NoteId string
ReactorId string
EmoteId uint
}