Advertisement
Guest User

Untitled

a guest
Mar 31st, 2016
372
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.29 KB | None | 0 0
  1. /**
  2.  *
  3.  * @author Jure
  4.  */
  5. public class ATCommandData
  6. {
  7.     String atCommand;
  8.     public String response;
  9.     int mode;
  10.  
  11.     public ATCommandData(String atCommand, int mode)
  12.     {
  13.         this.atCommand = atCommand;
  14.         this.mode = mode;
  15.         this.response = null;
  16.     }
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement