template-saas/apps/backend/dist/modules/tenants/entities/tenant.entity.d.ts
rckrdmrd 26f0e52ca7 feat: Initial commit - template-saas
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>
2026-01-07 04:41:24 -06:00

15 lines
348 B
TypeScript

export declare class Tenant {
id: string;
name: string;
slug: string;
domain: string | null;
logo_url: string | null;
status: string;
plan_id: string | null;
trial_ends_at: Date | null;
settings: Record<string, any> | null;
metadata: Record<string, any> | null;
created_at: Date;
updated_at: Date;
}