Coverage Summary for Class: NoteDomain (com.stslex93.notes.feature.edit_label.domain.model)

Class Class, % Method, % Branch, % Line, % Instruction, %
NoteDomain 0% (0/1) 0% (0/1) 0% (0/5) 0% (0/27)


 package com.stslex93.notes.feature.edit_label.domain.model
 
 data class NoteDomain(
     val id: Int = 0,
     val title: String,
     val content: String,
     val timestamp: Long,
     val labels: Set<LabelDomain>
 )