export class Settings { _id: string; vibration: boolean; lastMac: string; constructor(_id:string, vibration: boolean, lastMac:string) { this._id = _id; this.vibration = vibration; this.lastMac = lastMac; } }