Guest User

Untitled

a guest
Feb 24th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. package com.example.csanchez.pushexample;
  2.  
  3. /**
  4. * Created by csanchez on 11/02/18.
  5. */
  6.  
  7. public class MyNotification {
  8. private String title;
  9. private String body;
  10.  
  11. public MyNotification(String title, String body){
  12. this.body = body;
  13. this.title = title;
  14. }
  15.  
  16. public String getBody() {
  17. return body;
  18. }
  19.  
  20. public String getTitle() {
  21. return title;
  22. }
  23. }
Add Comment
Please, Sign In to add comment