7 lines
139 B
Go
7 lines
139 B
Go
|
package models
|
||
|
|
||
|
import "git.jamestombleson.com/jtom38/newsbot-api/domain"
|
||
|
|
||
|
type ListArticlesViewModel struct {
|
||
|
Items []domain.ArticleDto
|
||
|
}
|