You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sonic/model/dto/scrap_page.go

10 lines
196 B
Go

package dto
type ScrapPageDTO struct {
ID int32 `json:"id"`
Content string `json:"content"`
Title string `json:"title"`
Summary string `json:"summary"`
URL string `json:"url"`
}