42 lines
789 B
Java
42 lines
789 B
Java
package com.alexanderlogistics.zoho.dto;
|
|
|
|
public class ZohoInvoiceItem {
|
|
private String name;
|
|
private String description;
|
|
private double rate;
|
|
private int quantity;
|
|
|
|
// Getter und Setter
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public String getDescription() {
|
|
return description;
|
|
}
|
|
|
|
public void setDescription(String description) {
|
|
this.description = description;
|
|
}
|
|
|
|
public double getRate() {
|
|
return rate;
|
|
}
|
|
|
|
public void setRate(double rate) {
|
|
this.rate = rate;
|
|
}
|
|
|
|
public int getQuantity() {
|
|
return quantity;
|
|
}
|
|
|
|
public void setQuantity(int quantity) {
|
|
this.quantity = quantity;
|
|
}
|
|
}
|