com.cribbstechnologies.clients.mandrill.model.MergeVar Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mandrillClient Show documentation
Show all versions of mandrillClient Show documentation
A Java wrapper for Mandrill
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;
}
}