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