8 lines
106 B
Go
8 lines
106 B
Go
|
package model
|
||
|
|
||
|
type Log struct {
|
||
|
Model
|
||
|
Title string `json:"title"`
|
||
|
Content string `json:"content"`
|
||
|
}
|