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

10 lines
233 B
Go

package models
// A binding of one note to one emote
type NoteToEmote struct {
ID uint64 `gorm:"primarykey"`
Note Note // The note being bound
NoteId string
Emote Emote // The emote being included
EmoteId string
}