Template base para proyectos SaaS multi-tenant. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React/Vite) - apps/database (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
14 lines
311 B
TypeScript
14 lines
311 B
TypeScript
import { FeatureFlag } from './feature-flag.entity';
|
|
export declare class UserFlag {
|
|
id: string;
|
|
tenant_id: string;
|
|
user_id: string;
|
|
flag_id: string;
|
|
flag: FeatureFlag;
|
|
is_enabled: boolean;
|
|
value: any;
|
|
metadata: Record<string, any>;
|
|
created_at: Date;
|
|
updated_at: Date;
|
|
}
|