aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/shot/ClassShots.kt
blob: 066ba827c6a692a406314e126935bb3b1f70261b (plain)
1
2
3
4
5
6
7
8
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