File indexing completed on 2024-12-22 04:41:39

0001 /*
0002  * SPDX-FileCopyrightText: 2021 David Shlemayev <david.shlemayev@gmail.com>
0003  *
0004  * SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0005 */
0006 
0007 package org.kde.kdeconnect.Plugins.ConnectivityReportPlugin;
0008 
0009 public class SubscriptionState {
0010     final int subId;
0011     int signalStrength = 0;
0012     String networkType = "Unknown";
0013 
0014     public SubscriptionState(int subId) {
0015         this.subId = subId;
0016     }
0017 }