All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.silanis.esl.sdk.CycleCount Maven / Gradle / Ivy

There is a newer version: 11.9
Show newest version
package com.silanis.esl.sdk;

public class CycleCount {

    private Integer count = 0;
    private String cycle = "DAY";
    
    public void setCount(Integer count) {
        this.count = count;
    }

    public Integer getCount(){
        return count;
    }

    public void setCycle(String cycle) {
        this.cycle = cycle;
    }

    public String getCycle(){
        return cycle;
    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy