Newer
Older
CosmosServer / src / main / java / com / example / cosmos_serversb / entities / User.java
package com.example.cosmos_serversb.entities;

import java.util.ArrayList;
import java.util.List;


public class User {
    public String uId, uri, name, pw, iconUri;
    public boolean login = true;
    public List<String> token = new ArrayList<String>();

    public User(String name, String uId,String uri,String pw,ArrayList token,String iconUri) {
        this.name = name;
        this.uId = uId;
        this.uri=uri;
        this.pw=pw;
        this.token = new ArrayList<String>();//test
        //this.iconImage=iconImage;
        this.iconUri=iconUri;
    }
}