summaryrefslogtreecommitdiffstats
path: root/src/main/java/derms/replica/replica2/ResponderID.java
blob: 5d342c9f68239ac276aa84fa95ef2fe8a7154ff3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package derms.replica.replica2;

public class ResponderID {
	public City city;
	public short num;

	public ResponderID(City city, short num) {
		this.city = city;
		this.num = num;
	}

	@Override
	public String toString() {
		return ""+city+"R"+num;
	}
}