11 lines
129 B
Go
11 lines
129 B
Go
|
package storage
|
||
|
|
||
|
import "gorm.io/gorm"
|
||
|
|
||
|
type Reaction struct {
|
||
|
gorm.Model
|
||
|
NoteId string
|
||
|
ReactorId string
|
||
|
EmoteId uint
|
||
|
}
|