package com.fourtails.usuariolecturista.ottoEvents;
/**
* Base abstract class for any otto event
*/
public abstract class AbstractEvent {
private Enum _type;
protected AbstractEvent(Enum type) {
this._type = type;
}
public Enum getType() {
return this._type;
}
}