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

package com.zowyapp.store;

/**
 *
 * @author dhaval
 */
public class SchemaField {

    private String id;
    private Class type;

    public SchemaField(String id, Class type) {
        this.id = id;
        this.type = type;
    }

    public String getId() {
        return id;
    }

    public Class getType() {
        return type;
    }
}
