package com.dappervision.wearscript.events; public class SoundEvent { private String type; public SoundEvent(String type) { this.type = type; } public String getType() { return type; } }