mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-14 04:57:21 +01:00
25 lines
387 B
C++
25 lines
387 B
C++
#ifndef RBAC_PERMISSION_H
|
|
#define RBAC_PERMISSION_H
|
|
|
|
#include "core/string.h"
|
|
|
|
#include "core/resource.h"
|
|
|
|
class RBACPermission : public Resource {
|
|
RCPP_OBJECT(RBACPermission, Resource);
|
|
|
|
public:
|
|
int id;
|
|
int rank_id;
|
|
String name;
|
|
String url;
|
|
int sort_order;
|
|
int permissions;
|
|
|
|
bool is_smaller(const Ref<RBACPermission> &b) const;
|
|
|
|
RBACPermission();
|
|
~RBACPermission();
|
|
};
|
|
|
|
#endif |