001package jmri.jmrix.openlcb; 002 003/** 004 * Various common constants for OpenLCB 005 * 006 * @author Andrew Crosland Copyright (C) 2008 007 * @author Bob Jacobsen Copyright (C) 2010, 2023 008 */ 009public interface OlcbConstants { 010 011 /** 012 * Prefix for EventIDs stored as IdTags 013 */ 014 String tagPrefix = "IDOpenLCB$"; 015} 016 017