template-saas/apps/backend/dist/modules/notifications/entities/user-preference.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

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;
}