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_VPN_SETTING_P_H |
8 | #define NETWORKMANAGERQT_VPN_SETTING_P_H |
9 | |
10 | #include "generictypes.h" |
11 | |
12 | #include <QString> |
13 | |
14 | namespace NetworkManager |
15 | { |
16 | class VpnSettingPrivate |
17 | { |
18 | public: |
19 | VpnSettingPrivate(); |
20 | |
21 | QString name; |
22 | QString serviceType; |
23 | QString username; |
24 | NMStringMap data; |
25 | NMStringMap secrets; |
26 | bool persistent; |
27 | uint timeout; |
28 | }; |
29 | |
30 | } |
31 | |
32 | #endif // NETWORKMANAGERQT_VPN_SETTING_P_H |
33 | |