1 package uk.ac.ebi.intenz.stats.db;
2
3 public class XrefsStats {
4
5 private int total;
6 private int distinct;
7
8 XrefsStats(int total, int distinct) {
9 this.total = total;
10 this.distinct = distinct;
11 }
12
13 public int getTotal() {
14 return total;
15 }
16
17 public int getDistinct() {
18 return distinct;
19 }
20
21 }