package com.sharefaith.thesharefaithapp.models;

/**
 * Created by Anthony on 3/21/16.
 * Model for Bible chapters
 */
public class SFChapterModel
{
    /** chapter number */
    public int mChapter;

    public SFChapterModel(int chapter)
    {
        mChapter = chapter;
    }
}
