package com.forezp.banya.bean.book; /** * Created by forezp on 16/9/26. */ public class Series { private String id; private String title; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } }