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 }