Blame | Last modification | View Log | RSS feed
package com.spice.profitmandi.shopify.models;public class ShopifySyncModel {private int fofoStoreId;private boolean syncCustomer;private boolean syncLocation;public int getFofoStoreId() {return fofoStoreId;}public void setFofoStoreId(int fofoStoreId) {this.fofoStoreId = fofoStoreId;}public boolean isSyncCustomer() {return syncCustomer;}public void setSyncCustomer(boolean syncCustomer) {this.syncCustomer = syncCustomer;}public boolean isSyncLocation() {return syncLocation;}public void setSyncLocation(boolean syncLocation) {this.syncLocation = syncLocation;}}