1 | // SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL |
---|---|
2 | // SPDX-FileCopyrightText: 2024 Harald Sitter <sitter@kde.org> |
3 | |
4 | #pragma once |
5 | |
6 | #include "categorymetadata.h" |
7 | |
8 | namespace KNSCore |
9 | { |
10 | |
11 | class CategoryMetadataPrivate |
12 | { |
13 | public: |
14 | QString id; |
15 | QString name; |
16 | QString displayName; |
17 | }; |
18 | |
19 | } // namespace KNSCore |
20 |