fonchain-fiee/pkg/model/cast/oauth.go

11 lines
283 B
Go
Raw Normal View History

2025-06-16 02:37:18 +00:00
package cast
type OAuthPlatformReq struct {
MediaAccountUuid string `json:"mediaAccountUuid" form:"mediaAccountUuid" binding:"required"`
PlatformID int `json:"platformID" form:"platformID" binding:"required"`
}
type OAuthPlatformResp struct {
Url string `json:"url"`
}