Coverage Summary for Class: IgnoreModel (com.ghost.serialization.integration.model)

Class Class, % Method, % Branch, % Line, % Instruction, %
IgnoreModel 100% (1/1) 100% (1/1) 100% (4/4) 100% (17/17)


 package com.ghost.serialization.integration.model
 
 import com.ghost.serialization.annotations.GhostIgnore
 import com.ghost.serialization.annotations.GhostSerialization
 
 @GhostSerialization
 data class IgnoreModel(
     val id: Int,
     @GhostIgnore
     val secret: String = "default",
     val name: String
 )