14 lines
178 B
Go
14 lines
178 B
Go
package article
|
|
|
|
type ArticleModel struct {
|
|
Uuid string
|
|
Title string
|
|
Content string
|
|
}
|
|
|
|
type ArticleCreateModel struct {
|
|
Uuid string
|
|
Title string
|
|
Content string
|
|
}
|