Advertisement
Guest User

Untitled

a guest
Apr 20th, 2015
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. public class EventShared implements Serializable {
  2.  
  3. // Event properites
  4. public int ID;
  5. public int month;
  6. public int day;
  7. public int hour;
  8. public int authorID;
  9. public String title;
  10. public String description;
  11.  
  12. EventShared(int ID, int month, int day, int hour, int authorID, String title, String description)
  13. {
  14. this.ID = ID;
  15. this.month = month;
  16. this.day = day;
  17. this.hour = hour;
  18. this.authorID = authorID;
  19. this.title = title;
  20. this.description = description;
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement