2024-05-12 10:46:00 -07:00
|
|
|
package models
|
|
|
|
|
|
|
|
import "git.jamestombleson.com/jtom38/newsbot-api/domain"
|
|
|
|
|
|
|
|
type ListArticlesViewModel struct {
|
2024-07-14 09:07:16 -07:00
|
|
|
HeaderMetaTags
|
2024-06-02 19:55:05 -07:00
|
|
|
Items []ListArticleSourceModel
|
|
|
|
}
|
|
|
|
|
|
|
|
type ListArticleSourceModel struct {
|
2024-07-14 09:07:16 -07:00
|
|
|
HeaderMetaTags
|
2024-06-02 19:55:05 -07:00
|
|
|
Article domain.ArticleDto
|
|
|
|
Source domain.SourceDto
|
|
|
|
}
|