Subversion Repositories SmartDukaan

Rev

Rev 21925 | Rev 23364 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 21925 Rev 22858
Line 1... Line 1...
1
package com.spice.profitmandi.web.request;
1
package com.spice.profitmandi.common.model;
2
 
-
 
3
import com.spice.profitmandi.dao.enumuration.fofo.PaymentOptionType;
-
 
4
 
2
 
5
public class CustomPaymentOption {
3
public class CustomPaymentOption {
6
	private PaymentOptionType type;
4
	private String type;
7
	private float amount;
5
	private float amount;
8
	public PaymentOptionType getType() {
6
	public String getType() {
9
		return type;
7
		return type;
10
	}
8
	}
11
	public void setType(PaymentOptionType type) {
9
	public void setType(String type) {
12
		this.type = type;
10
		this.type = type;
13
	}
11
	}
14
	public float getAmount() {
12
	public float getAmount() {
15
		return amount;
13
		return amount;
16
	}
14
	}