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