it.auties.protobuf.serialization.model.property.ProtobufPropertyVariables Maven / Gradle / Ivy
package it.auties.protobuf.serialization.model.property;
import javax.lang.model.type.TypeMirror;
import java.util.List;
public record ProtobufPropertyVariables(boolean hasConverter, List variables) {
public record ProtobufPropertyVariable(TypeMirror type, String name, String value, boolean primitive) {
}
}