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