12 lines
173 B
Go
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"`
|
|
}
|