Define a note

This commit is contained in:
Micheal Wilkinson
2026-03-17 20:13:46 +00:00
parent 894c2fba08
commit 9cb33137fe

11
internal/models/note.go Normal file
View File

@@ -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"`
}