export default class User { constructor(id, name) { this.id = id; this.name = name; this.status = "online"; } }