10 lines
173 B
Go
10 lines
173 B
Go
|
package models
|
||
|
|
||
|
import "git.jamestombleson.com/jtom38/newsbot-api/domain"
|
||
|
|
||
|
type ListAllSourcesViewModel struct {
|
||
|
IsError bool
|
||
|
Message string
|
||
|
Items []domain.SourceDto
|
||
|
}
|