blob: 77323dbae9cf14fd01d4becf3bc58e64f105fecc [file] [log] [blame]
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;
}
}
}