qswiki/category.h

14 lines
159 B
C
Raw Permalink Normal View History

2018-11-03 17:12:20 +01:00
#ifndef CATEGORY_H
#define CATEGORY_H
#include <string>
class Category
{
public:
Category();
unsigned int id;
std::string name;
};
#endif // CATEGORY_H