newsbot-portal/internal/models/articles.go

15 lines
270 B
Go
Raw Permalink Normal View History

2024-05-12 10:46:00 -07:00
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
}