openkeepd/internal/models/db/note.go

10 lines
142 B
Go
Raw Permalink Normal View History

2019-10-20 18:30:55 +00:00
package db
// Note represents user note
type Note struct {
NoteID string
NoteTitle string
NoteAuthor string
NoteContent string
}