skailan-conversations
Version:
Servicio de conversaciones y mensajería para Skailan
19 lines • 456 B
JavaScript
export class Tag {
id;
organizationId;
name;
createdAt;
updatedAt;
constructor(id, organizationId, name, createdAt, updatedAt) {
this.id = id;
this.organizationId = organizationId;
this.name = name;
this.createdAt = createdAt;
this.updatedAt = updatedAt;
}
updateName(newName) {
this.name = newName;
this.updatedAt = new Date();
}
}
//# sourceMappingURL=Tag.js.map