Searched defs:UserProfileDTO (Results 1 – 4 of 4) sorted by relevance
19 type UserProfileDTO struct { struct20 Name string `json:"Name" xml:"Name"`21 EnglishName string `json:"EnglishName" xml:"EnglishName"`22 Avatar string `json:"Avatar" xml:"Avatar"`23 Mobile string `json:"Mobile" xml:"Mobile"`24 Email string `json:"Email" xml:"Email"`25 NickName string `json:"NickName" xml:"NickName"`26 UserId int `json:"UserId" xml:"UserId"`27 DataSource string `json:"DataSource" xml:"DataSource"`28 CreatedAt int64 `json:"CreatedAt" xml:"CreatedAt"`
28 UserProfileDTO UserProfileDTO `json:"UserProfileDTO" xml:"UserProfileDTO"` member
226 type UserProfileDTO struct { struct227 Id int64 `json:"id"`228 Email string `json:"email"`229 Name string `json:"name"`230 Login string `json:"login"`231 Theme string `json:"theme"`232 OrgId int64 `json:"orgId"`234 IsDisabled bool `json:"isDisabled"`237 UpdatedAt time.Time `json:"updatedAt"`238 CreatedAt time.Time `json:"createdAt"`[all …]