Newer
Older
CosmosServer / src / main / java / com / example / cosmos_serversb / entities / User.java
  1. package com.example.cosmos_serversb.entities;
  2.  
  3. import java.util.ArrayList;
  4. import java.util.List;
  5.  
  6.  
  7. public class User {
  8. public String uId, uri, name, pw, iconUri;
  9. public boolean login = true;
  10. public List<String> token = new ArrayList<String>();
  11.  
  12. public User(String name, String uId,String uri,String pw,ArrayList token,String iconUri) {
  13. this.name = name;
  14. this.uId = uId;
  15. this.uri=uri;
  16. this.pw=pw;
  17. this.token = new ArrayList<String>();//test
  18. //this.iconImage=iconImage;
  19. this.iconUri=iconUri;
  20. }
  21. }