Files
gotes/internal/models/note.go
2026-03-17 21:31:06 +00:00

12 lines
173 B
Go

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