Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
35079 vikas 1
package com.spice.profitmandi.shopify.models;
2
 
3
public class ShopifySyncModel {
4
    private int fofoStoreId;
5
    private boolean syncCustomer;
6
    private boolean syncLocation;
7
 
8
    public int getFofoStoreId() {
9
        return fofoStoreId;
10
    }
11
 
12
    public void setFofoStoreId(int fofoStoreId) {
13
        this.fofoStoreId = fofoStoreId;
14
    }
15
 
16
    public boolean isSyncCustomer() {
17
        return syncCustomer;
18
    }
19
 
20
    public void setSyncCustomer(boolean syncCustomer) {
21
        this.syncCustomer = syncCustomer;
22
    }
23
 
24
    public boolean isSyncLocation() {
25
        return syncLocation;
26
    }
27
 
28
    public void setSyncLocation(boolean syncLocation) {
29
        this.syncLocation = syncLocation;
30
    }
31
}