summaryrefslogtreecommitdiff
path: root/base/src/main/java/bjc/utils/ioutils/properties/Property.java
blob: 7cc936909b798ad7df07199a93f10be2ece3769a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package bjc.utils.ioutils.properties;

// @TODO implement me - ben, 1/6/20
@SuppressWarnings("javadoc")
public class Property {
	public String name;
	public String comment;
	public String value;

	public Property(String name, String comment, String value) {
		this.name    = name;
		this.comment = comment;
		this.value   = value;
	}
}