/**
 * Created by jd on 03/11/2015.
 */
export interface IPushNotificationMessage<T>
{
    from:IPushNotificationFrom;
    eventName:string;
    body:T;
}

export interface IPushNotificationFrom
{
    username:string;
    userId?:string;
}
