1package com.android.systemui.recents.events.ui;
2
3import com.android.systemui.recents.events.EventBus.Event;
4
5/**
6 * This event is sent when the user finished dragging in recents.
7 */
8public class DraggingInRecentsEndedEvent extends Event {
9
10    public final float velocity;
11
12    public DraggingInRecentsEndedEvent(float velocity) {
13        this.velocity = velocity;
14    }
15}
16