go-common/app/interface/main/web/model/feedback.go

22 lines
345 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
package model
// Feedback feedback param struct.
type Feedback struct {
Aid int64
Mid int64
TagID int64
Buvid string
Content *Content
Browser string
Version string
Email string
QQ string
Other string
}
// Content Content struct.
type Content struct {
Reason string `json:"reason"`
URL string `json:"url"`
}