linstrom/storage-new/models/Reaction.go
mstar 8f8ad3035a
Some checks are pending
/ test (push) Waiting to run
Comment all new code
2025-04-02 15:33:07 +02:00

14 lines
230 B
Go

package models
import "gorm.io/gorm"
// A Reaction is a user liking a note using an emote
type Reaction struct {
gorm.Model
Note Note
NoteId string
Reactor User
ReactorId string
Emote Emote
EmoteId uint
}