blob: 77d990a1d8a00443e45b0a80b7be1844cd984652 (
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;
}
}
|