// Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved. // For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md #include #include using namespace app::manager::actions; NotificationsChangedParams::NotificationsChangedParams(Notifications notifications) : notifications{std::move(notifications)} {} auto NotificationsChangedParams::getNotifications() const noexcept -> const Notifications & { return notifications; }