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 }