2020-03-22 12:49:08 +00:00
|
|
|
package model
|
|
|
|
|
|
|
|
// Article representation of an article in storage
|
|
|
|
type Article struct {
|
|
|
|
ID uint `json:"article_id" gorm:"primary_key"`
|
|
|
|
Author uint `json:"author"`
|
|
|
|
Title string `json:"title"`
|
|
|
|
Body string `json:"body"`
|
2020-03-29 15:30:36 +00:00
|
|
|
Score int
|
2020-03-22 12:49:08 +00:00
|
|
|
}
|