12 lines
139 B
Go
12 lines
139 B
Go
package article
|
|
|
|
type ArticleDTO struct {
|
|
Uuid string
|
|
Title string
|
|
Content string
|
|
}
|
|
|
|
type ArticleQueryDTO struct {
|
|
Title string
|
|
}
|