Kingston_Pendrive/Suli/13.b/Frontend/Javascript/2024. 11. 08/js/Bejegyzes.mjs
2024-11-19 19:04:02 +01:00

13 lines
253 B
JavaScript

class Bejegyzes {
constructor(id, cim, tartalom) {
this.id = id
this.cim = cim
this.tartalom = tartalom
}
getReszletek() {
return `${this.id}, ${this.cim}, ${this.tartalom}`
}
}
export default Bejegyzes;