package com.loopeer.test.itemtouchhelperextension; public class TestModel { public int position; public String title; public TestModel(int position, String title) { this.position = position; this.title = title; } }