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

com.cribbstechnologies.clients.mandrill.model.MergeVar Maven / Gradle / Ivy

There is a newer version: 1.1
Show newest version
package com.cribbstechnologies.clients.mandrill.model;

/**
 * Created with IntelliJ IDEA.
 * User: azuercher
 * Date: 6/27/12
 * Time: 5:23 PM
 * To change this template use File | Settings | File Templates.
 */
public class MergeVar {
    private String name;
    private String content;
    public MergeVar(String name, String content) {
        this.name = name;
        this.content = content;
    }
    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getContent() {
        return content;
    }

    public void setContent(String content) {
        this.content = content;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy