linstrom/storage/reactions.go
2024-11-18 12:18:57 +01:00

10 lines
129 B
Go

package storage
import "gorm.io/gorm"
type Reaction struct {
gorm.Model
NoteId string
ReactorId string
EmoteId uint
}