blob: 0c83e20f03f1c4d46aa59e3a87f2bd9d97f48f3a [file] [log] [blame]
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/webauthn/core/browser/passkey_model.h"
namespace webauthn {
PasskeyModel::UserEntity::UserEntity(std::vector<uint8_t> id,
std::string name,
std::string display_name)
: id(std::move(id)),
name(std::move(name)),
display_name(std::move(display_name)) {}
PasskeyModel::UserEntity::~UserEntity() = default;
} // namespace webauthn