crystal_cms_rcpp_fw/app/page_manager/page.h
2022-01-13 21:46:16 +01:00

21 lines
242 B
C++

#ifndef PAGE_H
#define PAGE_H
#include "core/string.h"
#include "core/resource.h"
class Page : public Resource {
RCPP_OBJECT(Page, Resource);
public:
String name;
String url;
int page_type;
int deleted;
Page();
~Page();
};
#endif