Fix i18n => IMAP Server:
[kdepim.git] / blogilo / src / category.h
blob893905f89999ecffaeab682e30e1530fa8abcbc5
1 /*
2 This file is part of Blogilo, A KDE Blogging Client
4 Copyright (C) 2008-2010 Mehrdad Momeny <mehrdad.momeny@gmail.com>
5 Copyright (C) 2008-2010 Golnaz Nilieh <g382nilieh@gmail.com>
7 This program is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public License as
9 published by the Free Software Foundation; either version 2 of
10 the License or (at your option) version 3 or any later version
11 accepted by the membership of KDE e.V. (or its successor approved
12 by the membership of KDE e.V.), which shall act as a proxy
13 defined in Section 14 of version 3 of the license.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, see http://www.gnu.org/licenses/
24 #ifndef CATEGORY_H
25 #define CATEGORY_H
26 #include <QString>
28 /**
29 Blog Category
30 @author Mehrdad Momeny <mehrdad.momeny@gmail.com>
31 @author Golnaz Nilieh <g382nilieh@gmail.com>
33 struct Category {
34 QString name;
35 QString description;
36 QString htmlUrl;
37 QString rssUrl;
38 QString categoryId;
39 QString parentId;
40 int id;
41 int blog_id;
43 Q_DECLARE_TYPEINFO(Category, Q_MOVABLE_TYPE);
44 #endif