mirror of
https://github.com/elyby/chrly.git
synced 2024-11-27 01:01:59 +05:30
18 lines
433 B
Go
18 lines
433 B
Go
package worker
|
|
|
|
type usernameChanged struct {
|
|
AccountId int `json:"accountId"`
|
|
OldUsername string `json:"oldUsername"`
|
|
NewUsername string `json:"newUsername"`
|
|
}
|
|
|
|
type skinChanged struct {
|
|
AccountId int `json:"userId"`
|
|
SkinId int `json:"skinId"`
|
|
OldSkinId int `json:"oldSkinId"`
|
|
Hash string `json:"hash"`
|
|
Is1_8 bool `json:"is1_8"`
|
|
IsSlim bool `json:"isSlim"`
|
|
Url string `json:"url"`
|
|
}
|