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>
16 lines
415 B
TypeScript
16 lines
415 B
TypeScript
export declare class UserNotificationPreference {
|
|
id: string;
|
|
user_id: string;
|
|
tenant_id: string;
|
|
email_enabled: boolean;
|
|
push_enabled: boolean;
|
|
in_app_enabled: boolean;
|
|
sms_enabled: boolean;
|
|
category_preferences: Record<string, boolean> | null;
|
|
marketing_emails: boolean;
|
|
product_updates: boolean;
|
|
security_alerts: boolean;
|
|
created_at: Date;
|
|
updated_at: Date;
|
|
}
|