1 | /* |
2 | SPDX-FileCopyrightText: 2012-2013 Jan Grulich <jgrulich@redhat.com> |
3 | |
4 | SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL |
5 | */ |
6 | |
7 | #ifndef NETWORKMANAGERQT_PPPOE_SETTING_P_H |
8 | #define NETWORKMANAGERQT_PPPOE_SETTING_P_H |
9 | |
10 | #include <QString> |
11 | |
12 | namespace NetworkManager |
13 | { |
14 | class PppoeSettingPrivate |
15 | { |
16 | public: |
17 | PppoeSettingPrivate(); |
18 | |
19 | QString name; |
20 | QString service; |
21 | QString username; |
22 | QString password; |
23 | QString parent; |
24 | NetworkManager::Setting::SecretFlags passwordFlags; |
25 | }; |
26 | |
27 | } |
28 | |
29 | #endif // NETWORKMANAGERQT_PPPOE_SETTING_P_H |
30 | |