// Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved. // For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md #pragma once #include #include namespace gui { class ApnListData : public SwitchData { public: explicit ApnListData(std::vector> apns) : apns(std::move(apns)) {} [[nodiscard]] auto getAPNs() const noexcept -> const std::vector> & { return apns; } private: std::vector> apns; }; } // namespace gui