UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

9 lines (8 loc) 216 B
import { BaseEntity } from "./base.entity"; import { User } from "./user.entity"; export declare class SystemPreference extends BaseEntity { userId: number; user: User; key: string; value: boolean; }