mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-09-02 23:58:04 -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"`
|
||
|
|
}
|