blob: 341cfb6aec6be0010d6621f68e0ea598dfd2128d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package bjc.utils.ioutils.properties;
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;
}
}
|