import { BaseModel } from './base'; import { RoleAction } from './RoleAction'; export interface RoleContext extends BaseModel { Name: string; Description?: string; Role: string; RoleActions: RoleAction[]; APIKey: string; ApplicationRoleContext: string; }