/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package com.dhaval.android.appstat.model;

import java.io.Serializable;

/**
 *
 * @author dhaval
 */
public class Identity implements Serializable{

    private String id;

    public Identity(String id) {
        this.id = id;
    }

    public String getId() {
        return id;
    }

    @Override
    public String toString() {
        return "{'id': '" + id + "'}";
    }

    
}
