9 lines
187 B
Go
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
|
|
}
|