Let's make (git) history!

此提交包含在:
2018-11-03 17:12:20 +01:00
當前提交 3bfebfe8a8
共有 212 個檔案被更改,包括 11970 行新增0 行删除

13
category.h 一般檔案
查看文件

@@ -0,0 +1,13 @@
#ifndef CATEGORY_H
#define CATEGORY_H
#include <string>
class Category
{
public:
Category();
unsigned int id;
std::string name;
};
#endif // CATEGORY_H