aboutsummaryrefslogtreecommitdiff
path: root/WordPress/src/main/java/org/wordpress/android/ui/suggestion/service/SuggestionEvents.java
blob: 77323dbae9cf14fd01d4becf3bc58e64f105fecc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.wordpress.android.ui.suggestion.service;

public class SuggestionEvents {
    public static class SuggestionNameListUpdated {
        public final int mRemoteBlogId;
        SuggestionNameListUpdated(int remoteBlogId) {
            mRemoteBlogId = remoteBlogId;
        }
    }

    public static class SuggestionTagListUpdated {
        public final int mRemoteBlogId;
        SuggestionTagListUpdated(int remoteBlogId) {
            mRemoteBlogId = remoteBlogId;
        }
    }
}