Files
rootandClaude Opus 5 8679200f41 Initial commit
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-09-15 13:57:10 +08:00

23 lines
664 B
Go

package tonemod
import "encoding/json"
// ToneValue
type ToneValue struct {
OfficialRecomPlayCount int64 `json:"officialRecomPlayCount"`
GoldCoinAreaPayCount int64 `josn:"goldCoinAreaPayCount"`
LatestUploadPlayCount int64 `json:"latestUploadPlayCount"`
MostLikesPlayCount int64 `json:"mostLikesPlayCount"`
PlayAtMostPlayCount int64 `json:"playAtMostPlayCount"`
MostCommentsPlayCount int64 `json:"mostCommentsPlayCount"`
FreeAreaPlayCount int64 `json:"freeAreaPlayCount"`
}
func (v ToneValue) MarshalBinary() ([]byte, error) {
return json.Marshal(v)
}
func (v *ToneValue) UnmarshalBinary(b []byte) error {
return json.Unmarshal(b, v)
}