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.
Files
openskins-common/datatypes/user.go

8 lines
147 B
Go

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