Guest User

Untitled

a guest
Jun 19th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. public class Lawn{
  2. public String address;
  3. public String cutday;
  4. public String crew;
  5. public boolean mowed;
  6. public long id;
  7.  
  8. public Lawn( String address,String cday,String crew,boolean mowed,long id ){
  9. this.address = address;
  10. this.cutday = cday;
  11. this.crew = crew;
  12. this.mowed = mowed;
  13. this.id = id;
  14. }
  15. }
Add Comment
Please, Sign In to add comment