All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.manywho.sdk.api.draw.content.Command Maven / Gradle / Ivy

There is a newer version: 2.0.1
Show newest version
package com.manywho.sdk.api.draw.content;

import java.util.HashMap;

public class Command {
    private String commandType;
    private HashMap properties;

    public String getCommandType() {
        return commandType;
    }

    public void setCommandType(String commandType) {
        this.commandType = commandType;
    }

    public HashMap getProperties() {
        return properties;
    }

    public void setProperties(HashMap properties) {
        this.properties = properties;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy