newsbot-portal/internal/models/sources.go

13 lines
213 B
Go

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