go-common/app/interface/bbq/app-bbq/api/http/v1/invite.go

20 lines
400 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
package v1
// InvitationRequest .
type InvitationRequest struct {
MID int64 `json:"mid" form:"mid" validate:"required"`
}
// Download .
type Download struct {
URL string `json:"url"`
PWD string `json:"pwd"`
Type int8 `json:"type"`
}
// InvitationResponse .
type InvitationResponse struct {
Data []*Download `json:"download,omitempty"`
InviteCode int32 `json:"invite_code"`
}