diff --git a/internal/models/note.go b/internal/models/note.go new file mode 100644 index 0000000..49b3b09 --- /dev/null +++ b/internal/models/note.go @@ -0,0 +1,11 @@ +package models + +import ( + "time" +) + +type Note struct { + ID int `json:"id"` + CreatedAt time.Time `json:"created_at"` + Content string `json:"content"` +} \ No newline at end of file