Files
gotes/internal/models/note.go
Micheal Wilkinson 9cb33137fe Define a note
2026-03-17 20:48:18 +00:00

11 lines
154 B
Go

package models
import (
"time"
)
type Note struct {
ID int `json:"id"`
CreatedAt time.Time `json:"created_at"`
Content string `json:"content"`
}