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

fr.sii.ogham.html.inliner.ExternalCss Maven / Gradle / Ivy

package fr.sii.ogham.html.inliner;

public class ExternalCss {
	private String path;
	
	private String content;

	public ExternalCss(String path, String content) {
		super();
		this.path = path;
		this.content = content;
	}

	public String getPath() {
		return path;
	}

	public String getContent() {
		return content;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy