UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

13 lines (12 loc) 378 B
import { BaseEntity } from "./base.entity"; import { CompanyRolePermission } from "./company-role-permission.entity"; import { User } from "./user.entity"; export declare class CompanyRole extends BaseEntity { userId: number; user: User; name: string; slug: string; description: string; isActive: boolean; rolePermissions: CompanyRolePermission[]; }