You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe. UserCustomField's have HasPic, PicHash, and Value attributes that are not on User object, so I can't simply copy across.
Describe the solution you'd like
A constructor overload that you can pass a user into, new UserCustomField(user).
Describe alternatives you've considered
newUserCustomField{Id=user.Id,Name=user.Name,Email=user.Email,ActiveFlag=user.ActiveFlag,HasPic=user.IconUrlisnull or "",PicHash=null,// could get the image and get hash but not sure what hashing functionValue=null// no clue what this value is};
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
UserCustomField
's haveHasPic
,PicHash
, andValue
attributes that are not onUser
object, so I can't simply copy across.Describe the solution you'd like
A constructor overload that you can pass a user into,
new UserCustomField(user)
.Describe alternatives you've considered
The text was updated successfully, but these errors were encountered: