More work on defining the new data structure
Some checks are pending
/ test (push) Waiting to run

This commit is contained in:
Melody Becker 2025-03-26 17:14:42 +01:00
parent daf401a2f7
commit 8d4ba2ecae
Signed by: mstar
SSH key fingerprint: SHA256:9VAo09aaVNTWKzPW7Hq2LW+ox9OdwmTSHRoD4mlz1yI
14 changed files with 56 additions and 7 deletions

View file

@ -0,0 +1,8 @@
package models
type NoteToAttachment struct {
Note Note
NoteId string
Attachment MediaMetadata
AttachmentId string
}