IStitchModule

public interface IStitchModule {

    String getName();

    Optional<String> getSuffix();

    boolean isEnabled();

    void toggle(boolean state);

}

Last updated