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

dev.soffa.foundation.model.TemplateMessage Maven / Gradle / Ivy

There is a newer version: 0.17.31
Show newest version
package dev.soffa.foundation.model;

import lombok.Data;
import lombok.NoArgsConstructor;

import java.util.HashMap;
import java.util.Map;

@Data
@NoArgsConstructor
public class TemplateMessage {

    private String template;
    private Map values = new HashMap<>();

    public TemplateMessage(String template) {
        this.template = template;
    }

    public TemplateMessage(String template, Map values) {
        this.template = template;
        this.values = values;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy