linstrom/storage-new/models/NoteToAttachments.go

10 lines
228 B
Go

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