9 lines
173 B
Go
9 lines
173 B
Go
package models
|
|
|
|
// A binding of one note to one mentioned account
|
|
type NoteToPing struct {
|
|
Note Note
|
|
NoteId string
|
|
PingTarget User
|
|
PingTargetId string
|
|
}
|