Subversion Repositories SmartDukaan

Rev

Rev 24089 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
23936 tejbeer 1
package com.spice.profitmandi.web.req;
2
 
3
public class CreateAddMoneyRequest {
4
	private String transaction_reference;
5
	private float amount;
6
 
7
	public String getTransaction_reference() {
8
		return transaction_reference;
9
	}
10
	public void setTransaction_reference(String transaction_reference) {
11
		this.transaction_reference = transaction_reference;
12
	}
13
	public float getAmount() {
14
		return amount;
15
	}
16
	public void setAmount(float amount) {
17
		this.amount = amount;
18
	}
19
 
20
 
21
}