mirror of
https://github.com/ChronosX88/openkeepd.git
synced 2024-11-08 20:40:59 +00:00
10 lines
142 B
Go
10 lines
142 B
Go
package db
|
|
|
|
// Note represents user note
|
|
type Note struct {
|
|
NoteID string
|
|
NoteTitle string
|
|
NoteAuthor string
|
|
NoteContent string
|
|
}
|