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

cn.schoolwow.ams.domain.block.common.operation.CustomerMessage Maven / Gradle / Ivy

package cn.schoolwow.ams.domain.block.common.operation;

public class CustomerMessage {
    public String type = "primary";

    public String message;

    public CustomerMessage(String message) {
        this.message = message;
    }

    public CustomerMessage(String type, String message) {
        this.type = type;
        this.message = message;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy