11 lines
143 B
Go
11 lines
143 B
Go
|
|
package models
|
|
|
|
type Note struct {
|
|
ID int
|
|
Path string
|
|
Title string
|
|
Slug string
|
|
CreatedAt string
|
|
UpdatedAt string
|
|
}
|