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>
18 lines
403 B
TypeScript
18 lines
403 B
TypeScript
export declare class Notification {
|
|
id: string;
|
|
user_id: string;
|
|
tenant_id: string;
|
|
template_id: string | null;
|
|
type: string;
|
|
channel: string;
|
|
title: string;
|
|
message: string;
|
|
data: Record<string, any> | null;
|
|
action_url: string | null;
|
|
is_read: boolean;
|
|
read_at: Date | null;
|
|
delivery_status: string;
|
|
sent_at: Date | null;
|
|
created_at: Date;
|
|
}
|