1 package mobisnap.common.msql;
2
3 /***
4 * @version
5 * @author
6 */
7 public class MobileTrxWraper
8 implements java.io.Serializable
9 {
10 public MobileTrx mobileTrx;
11 public int clientID;
12 public int trxID;
13
14 public MobileTrxWraper( MobileTrx mobileTrx, int clientID, int trxID) {
15 this.mobileTrx = mobileTrx;
16 this.clientID = clientID;
17 this.trxID = trxID;
18 }
19 }
This page was automatically generated by Maven