mirror of
https://github.com/IceWhaleTech/CasaOS.git
synced 2025-06-16 05:55:33 +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"`
|
|
}
|