diff options
Diffstat (limited to 'src/main/kotlin/moe/nea/shot/ClassShots.kt')
-rw-r--r-- | src/main/kotlin/moe/nea/shot/ClassShots.kt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/main/kotlin/moe/nea/shot/ClassShots.kt b/src/main/kotlin/moe/nea/shot/ClassShots.kt new file mode 100644 index 0000000..066ba82 --- /dev/null +++ b/src/main/kotlin/moe/nea/shot/ClassShots.kt @@ -0,0 +1,9 @@ +package moe.nea.shot + +import java.io.Serializable + +data class ClassShots( + val annotations: List<ClassRef>, + val methodShots: Map<MethodRef, MethodShots>, + val fieldShots: Map<FieldRef, FieldShots>, +) : Serializable
\ No newline at end of file |