17 lines
369 B
Go
17 lines
369 B
Go
package dto
|
|
|
|
// 分享对象
|
|
type ShareDTO struct {
|
|
ShareLink string
|
|
ShareTitle string //
|
|
ShareDescription string
|
|
ShareIconUrl string // 分享的icon
|
|
LinkUrl string // 打开的链接
|
|
}
|
|
|
|
type VisitCountDTO struct {
|
|
VisitCount string // 访问数
|
|
VisitedCount string // 被访问数
|
|
NewVisitedCount string // 新被访问数
|
|
}
|