linstrom/storage-new/models/NoteToAttachments.go
mstar 8f8ad3035a
Some checks are pending
/ test (push) Waiting to run
Comment all new code
2025-04-02 15:33:07 +02:00

10 lines
282 B
Go

package models
// A binding of one note to one media attachment
type NoteToAttachment struct {
ID uint64 `gorm:"primarykey"`
Note Note // The note being bound
NoteId string
Attachment MediaMetadata // The media being bound to
AttachmentId string
}