You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a use case here where kotlin have internal subclass
@Serializable
data classA(valc:C){
enumclassC{
one
}
}
@Serializable
data classB(valc:C){
enumclassC {
two
}
}
@Serializable
data classTest(
vala:A,
valb:B
)