You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package model |
|
|
|
// UpBaseStat for up base. |
|
type UpBaseStat struct { |
|
View int64 `json:"view"` |
|
Reply int64 `json:"reply"` |
|
Dm int64 `json:"dm"` |
|
Fans int64 `json:"fans"` |
|
Fav int64 `json:"fav"` |
|
Like int64 `json:"like"` |
|
Share int64 `json:"share"` |
|
}
|
|
|