Swati4star/Images-to-PDF

View on GitHub
app/src/main/java/swati4star/createpdf/model/WhatsNew.java

Summary

Maintainability
A
1 hr
Test Coverage
package swati4star.createpdf.model;

public class WhatsNew {

    private String mTitle;
    private String mDescription;
    private String mIcon;

    public WhatsNew(String title, String description, String icon) {
        this.mTitle = title;
        this.mDescription = description;
        this.mIcon = icon;
    }

    public String getTitle() {
        return mTitle;
    }

    public void setTitle(String title) {
        this.mTitle = title;
    }

    public String getDescription() {
        return mDescription;
    }

    public void setDescription(String description) {
        this.mDescription = description;
    }

    public String getIcon() {
        return mIcon;
    }

    public void setIcon(String icon) {
        this.mIcon = icon;
    }
}