allow adding new items to checklists

This commit is contained in:
tibbi
2018-12-07 23:37:03 +01:00
parent c0acb525ad
commit d021a9d0fd
30 changed files with 120 additions and 31 deletions

View File

@ -0,0 +1,3 @@
package com.simplemobiletools.notes.pro.models
data class ChecklistItem(val title: String, val isDone: Boolean)