linstrom/storage-new/models/NoteToAttachments.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
187 B
Go

package models
// A binding of one note to one media attachment
type NoteToAttachment struct {
Note Note
NoteId string
Attachment MediaMetadata
AttachmentId string
}