Guest User

Untitled

a guest
Jun 18th, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. package com.padcmyanmar.sfc.mvp.views;
  2.  
  3. import com.padcmyanmar.sfc.data.vo.NewsVO;
  4.  
  5. import java.util.List;
  6.  
  7. public interface NewsListView {
  8.  
  9. void displayNewsList(List<NewsVO> newsList);
  10.  
  11. void displayErrorMsg(String errorMsg);
  12. }
Add Comment
Please, Sign In to add comment