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>
13 lines
271 B
TypeScript
13 lines
271 B
TypeScript
export declare class Role {
|
|
id: string;
|
|
tenant_id: string;
|
|
name: string;
|
|
code: string;
|
|
description: string | null;
|
|
is_system: boolean;
|
|
is_active: boolean;
|
|
metadata: Record<string, any> | null;
|
|
created_at: Date;
|
|
updated_at: Date;
|
|
}
|