-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSeller.java
More file actions
26 lines (20 loc) · 736 Bytes
/
Seller.java
File metadata and controls
26 lines (20 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.ikai.unitshop;
import java.util.ArrayList;
/**
* Created by shiv on 19/11/17.
*/
public class Seller {
public String shopName, shopAddress, shopPinCode, sellerMobNumber;
public ArrayList<String> categories;
// Default constructor required for calls to DataSnapshot.getValue(Seller.class)
public Seller() {}
public Seller(final String shopName, final String shopAddress
, final String shopPinCode, final String sellerMobNumber,
final ArrayList<String> categories) {
this.shopName = shopName;
this.shopAddress = shopAddress;
this.shopPinCode = shopPinCode;
this.sellerMobNumber = sellerMobNumber;
this.categories = categories;
}
}