linstrom/storage-new/models/NoteToPing.go

10 lines
214 B
Go

package models
// A binding of one note to one mentioned account
type NoteToPing struct {
ID uint64 `gorm:"primarykey"`
Note Note
NoteId string
PingTarget User
PingTargetId string
}