UNPKG

skailan-crm

Version:

Servicio de CRM y gestión de ventas para Skailan

25 lines 618 B
export class Competitor { id; organizationId; name; notes; createdAt; updatedAt; constructor(id, organizationId, name, notes, createdAt, updatedAt) { this.id = id; this.organizationId = organizationId; this.name = name; this.notes = notes; this.createdAt = createdAt; this.updatedAt = updatedAt; } updateName(newName) { this.name = newName; this.updatedAt = new Date(); } updateNotes(newNotes) { this.notes = newNotes; this.updatedAt = new Date(); } } //# sourceMappingURL=Competitor.js.map