001    import java.util.Map;
002    
003    /**
004     * Kit.java - Contains the stuff for a kit.
005     * 
006     * @author James
007     */
008    public class Kit {
009    
010        /**
011         * Kit ID - Used in database transactions
012         */
013        public int ID;
014        /**
015         * Kit Name
016         */
017        public String Name;
018        /**
019         * List of Item IDs and amounts to give
020         */
021        public Map<String, Integer> IDs;
022        /**
023         * Delay between uses
024         */
025        public int Delay;
026        /**
027         * Group that can use this kit.
028         */
029        public String Group;
030    }