cn.mapway.document.ui.client.test.HistoryData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mapway-doc-ui Show documentation
Show all versions of mapway-doc-ui Show documentation
auto gen doc from api with ui
package cn.mapway.document.ui.client.test;
// TODO: Auto-generated Javadoc
/**
* The Class HistoryData.
*/
public class HistoryData {
/**
* Instantiates a new history data.
*
* @param t the t
* @param v the v
*/
public HistoryData(String t, String v) {
this.title = t;
this.value = v;
}
/**
* The title.
*/
public String title;
/**
* The value.
*/
public String value;
}