001package jmri.jmrix.loconet.locostats; 002 003/** 004 * PR2 (or PR3) Status, when operating in PR2 mode 005 * 006 * @author Bob Milhaupt Copyright (C) 2017 007 */ 008public class PR2Status { 009 public PR2Status(int serial, int status, int current, int hardware, int software) { 010 this.serial = serial; 011 this.status = status; 012 this.current = current; 013 this.hardware = hardware; 014 this.software = software; 015 } 016 017 public int serial, status, current, hardware, software; 018 019}