mirror of
https://github.com/Relintai/crystal_cms_rcpp_fw.git
synced 2025-04-22 20:41:18 +02:00
21 lines
242 B
C++
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 |