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

com.rmn.testrail.entity.EmptyMilestone Maven / Gradle / Ivy

There is a newer version: 1.3.2
Show newest version
package com.rmn.testrail.entity;

import org.codehaus.jackson.annotate.JsonProperty;

/**
 * @author jsteigel
 */
public class EmptyMilestone extends BaseEntity {
    @JsonProperty("name")
    private String name;
    public String getName() { return name; }
    public void setName(String name) { this.name = name; }

    @JsonProperty("description")
    private String description;
    public String getDescription() { return description; }
    public void setDescription(String description) { this.description = description; }

    @JsonProperty("due_on")
    private String dueOn;
    public String getDueOn() { return dueOn; }
    public void setDueOn(String dueOn) { this.dueOn = dueOn; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy