/**
 * @author: dn-jinmin/dn-jinmin
 * @doc:
 */

package book

type (
	Section struct {
		Title string `json:"title"`
		Count int    `json:"count"`
	}

	BodyContent struct {
		Content     string `json:"content"`
		LastContent string `json:"lastContent"`
		Count       int    `json:"count"`
	}
)
