This repository has been archived on 2023-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
openskins-common/datatypes/user.go

9 lines
198 B
Go

package datatypes
// User is an object representing a user
type User struct {
UID string `json:"uid"`
OwnedSkins Skins `json:"skins"`
Characters Characters `json:"characters"`
}