linstrom/storage-new/models/Reaction.go
mstar 67b507f4bd
Some checks are pending
/ test (push) Waiting to run
Describe all types for the new storage system
2025-03-27 10:45:57 +01:00

14 lines
247 B
Go

package models
import "gorm.io/gorm"
// A binding of one note to one account reacting to it with one emote
type Reaction struct {
gorm.Model
Note Note
NoteId string
Reactor User
ReactorId string
Emote Emote
EmoteId uint
}