openkeepd/internal/models/db/note.go
2019-10-20 22:31:35 +04:00

10 lines
142 B
Go

package db
// Note represents user note
type Note struct {
NoteID string
NoteTitle string
NoteAuthor string
NoteContent string
}