rcpp_framework/modules/rbac/rbac_rank.h

29 lines
405 B
C
Raw Normal View History

#ifndef RBAC_RANK_H
#define RBAC_RANK_H
#include "core/resource.h"
#include <string>
#include <vector>
#include "rbac_permission.h"
class RBACRank : public Resource {
RCPP_OBJECT(RBACRank, Resource);
public:
int id;
std::string name;
std::string name_internal;
std::string settings;
2021-11-01 15:12:09 +01:00
int rank_permissions;
std::vector<Ref<RBACPermission> > permissions;
RBACRank();
~RBACRank();
};
#endif