kstoyanov

07. Data Class

Sep 22nd, 2020
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. class Request {
  2.   constructor(method, uri, version, message) {
  3.     this.method = method;
  4.     this.uri = uri;
  5.     this.version = version;
  6.     this.message = message;
  7.     this.response = undefined;
  8.     this.fulfilled = false;
  9.   }
  10. }
Add Comment
Please, Sign In to add comment