15 lines
270 B
Go
15 lines
270 B
Go
package models
|
|
|
|
import "git.jamestombleson.com/jtom38/newsbot-api/domain"
|
|
|
|
type ListArticlesViewModel struct {
|
|
HeaderMetaTags
|
|
Items []ListArticleSourceModel
|
|
}
|
|
|
|
type ListArticleSourceModel struct {
|
|
HeaderMetaTags
|
|
Article domain.ArticleDto
|
|
Source domain.SourceDto
|
|
}
|