mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 05:46:26 -05:00
13 lines
227 B
Go
13 lines
227 B
Go
package v1
|
|
|
|
// ScoreRequest .
|
|
type ScoreRequest struct {
|
|
Name string `json:"name" form:"name" validate:"required"`
|
|
}
|
|
|
|
// ScoreResponse .
|
|
type ScoreResponse struct {
|
|
Name string `json:"name"`
|
|
Score float32 `json:"score"`
|
|
}
|