mirror of
https://git.vectorsigma.ru/public/CasaOS.git
synced 2026-07-28 21:37:38 +00:00
10 lines
219 B
Go
10 lines
219 B
Go
package model
|
|
|
|
type UserInfo struct {
|
|
NickName string `json:"nick_name"`
|
|
Desc string `json:"desc"`
|
|
ShareId string `json:"share_id"`
|
|
Avatar string `json:"avatar"`
|
|
Version int `json:"version,omitempty"`
|
|
}
|