chromium/chromeos/ash/components/dbus/fwupd/fwupd_request.cc

// 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 "chromeos/ash/components/dbus/fwupd/fwupd_request.h"

namespace ash {

FwupdRequest::FwupdRequest() = default;

FwupdRequest::FwupdRequest(uint32_t id, uint32_t kind) : id(id), kind(kind) {}

FwupdRequest::FwupdRequest(const FwupdRequest& other) = default;
FwupdRequest::~FwupdRequest() = default;

}  // namespace ash