mirror of
				https://github.com/SimpleMobileTools/Simple-Notes.git
				synced 2025-06-05 17:00:23 +02:00 
			
		
		
		
	Added Serializable to ChecklistItem
This commit is contained in:
		@@ -3,8 +3,16 @@ package com.simplemobiletools.notes.pro.models
 | 
			
		||||
import com.simplemobiletools.commons.helpers.AlphanumericComparator
 | 
			
		||||
import com.simplemobiletools.commons.helpers.SORT_BY_TITLE
 | 
			
		||||
import com.simplemobiletools.commons.helpers.SORT_DESCENDING
 | 
			
		||||
import kotlinx.serialization.Serializable
 | 
			
		||||
 | 
			
		||||
@Serializable
 | 
			
		||||
data class ChecklistItem(
 | 
			
		||||
    val id: Int,
 | 
			
		||||
    val dateCreated: Long = 0L,
 | 
			
		||||
    var title: String,
 | 
			
		||||
    var isDone: Boolean
 | 
			
		||||
) : Comparable<ChecklistItem> {
 | 
			
		||||
 | 
			
		||||
data class ChecklistItem(val id: Int, val dateCreated: Long = 0L, var title: String, var isDone: Boolean) : Comparable<ChecklistItem> {
 | 
			
		||||
    companion object {
 | 
			
		||||
        var sorting = 0
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user