linstrom/storage-new/models/NoteToPing.go
mstar 67b507f4bd
Some checks are pending
/ test (push) Waiting to run
Describe all types for the new storage system
2025-03-27 10:45:57 +01:00

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
}