skailan-crm
Version:
Servicio de CRM y gestión de ventas para Skailan
12 lines • 425 B
TypeScript
export declare class Competitor {
readonly id: string;
organizationId: string;
name: string;
notes: string | null;
createdAt: Date;
updatedAt: Date;
constructor(id: string, organizationId: string, name: string, notes: string | null, createdAt: Date, updatedAt: Date);
updateName(newName: string): void;
updateNotes(newNotes: string | null): void;
}
//# sourceMappingURL=Competitor.d.ts.map