10 lines
233 B
Go
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
|
|
}
|