package com.c2kernel.lifecycle.instance.predefined.entitycreation; /** * New Properties for the item * * @version $Revision: 1.1 $ $Date: 2005/04/28 13:48:26 $ */ public class Property implements java.io.Serializable { public String name; public String value; //----------------/ //- Constructors -/ //----------------/ public Property() { super(); } public Property(String name, String value) { super(); this.name = name; this.value = value; } }