@experts_hub/shared
Version:
Shared DTOs, interfaces, and utilities for experts hub applications
11 lines (10 loc) • 308 B
TypeScript
import { BaseEntity } from "./base.entity";
import { CompanyRole } from "./company-role.entity";
import { User } from "./user.entity";
export declare class CompanyMemberRole extends BaseEntity {
userId: number;
user: User;
role: CompanyRole;
companyRoleId: number;
assignedBy?: number;
}