OpenSRP/opensrp-client-anc

View on GitHub
opensrp-anc/src/main/java/org/smartregister/anc/library/event/SyncEvent.java

Summary

Maintainability
A
0 mins
Test Coverage
package org.smartregister.anc.library.event;

import org.smartregister.domain.FetchStatus;

/**
 * Created by ndegwamartin on 14/03/2018.
 */

public class SyncEvent extends BaseEvent {

    private FetchStatus fetchStatus;

    public SyncEvent(FetchStatus fetchStatus) {
        this.fetchStatus = fetchStatus;
    }

    public FetchStatus getFetchStatus() {
        return fetchStatus;
    }
}