Guest User

Untitled

a guest
Dec 14th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. [HttpGet]
  2. [JwtAuthenticate]
  3. public GetFaqListDS Index([FromUri] GetFaqListModel model)
  4. {
  5. List<MP_faqs> res = Faq.GetFaqList(model.curPage, model.pageSize);
  6. var re = Request;
  7. var hds = re.Headers;
  8. GetFaqListDS ds = new GetFaqListDS();
  9. ds.data = res;
  10. return ds;
  11. }
Add Comment
Please, Sign In to add comment