Request.cs 295 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace RESTClient.Model
  7. {
  8. class Request
  9. {
  10. String method;//post,get,put,delete
  11. String body;
  12. String header;
  13. String response;
  14. }
  15. }