package com.cscodetech.moverslorry.model;

import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

public class Pages {
    @SerializedName("title")
    @Expose
    private String title;
    @SerializedName("description")
    @Expose
    private String description;

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

}
