12 lines
216 B
Go
12 lines
216 B
Go
|
package model
|
||
|
|
||
|
// Article type
|
||
|
type Article struct {
|
||
|
Title string `json:"title"`
|
||
|
Description string `json:"description"`
|
||
|
Content string `json:"content"`
|
||
|
}
|
||
|
|
||
|
// Articles Collection
|
||
|
type Articles []Article
|