Bit.Api.Models.UpdateProfileRequestModel.ToUser C# (CSharp) Method

ToUser() public method

public ToUser ( User existingUser ) : User
existingUser User
return User
        public User ToUser(User existingUser)
        {
            existingUser.Name = Name;
            existingUser.MasterPasswordHint = string.IsNullOrWhiteSpace(MasterPasswordHint) ? null : MasterPasswordHint;
            existingUser.Culture = Culture;

            return existingUser;
        }
UpdateProfileRequestModel