diff options
Diffstat (limited to 'base/src/main/java/bjc/utils/ioutils/properties/Property.java')
| -rw-r--r-- | base/src/main/java/bjc/utils/ioutils/properties/Property.java | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/base/src/main/java/bjc/utils/ioutils/properties/Property.java b/base/src/main/java/bjc/utils/ioutils/properties/Property.java new file mode 100644 index 0000000..341cfb6 --- /dev/null +++ b/base/src/main/java/bjc/utils/ioutils/properties/Property.java @@ -0,0 +1,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; + } +} |
