mirror of
https://github.com/BreizhHardware/Jellystat.git
synced 2026-03-18 21:30:35 +01:00
7 lines
134 B
JavaScript
7 lines
134 B
JavaScript
class libraryItem {
|
|
constructor(id, name, email) {
|
|
this.id = id;
|
|
this.name = name;
|
|
this.email = email;
|
|
}
|
|
} |