commonMain.com.saveourtool.save.demo.cpg.cytoscape.CytoscapeGraph.kt Maven / Gradle / Ivy
The newest version!
package com.saveourtool.save.demo.cpg.cytoscape
import kotlinx.serialization.Serializable
/**
* @property nodes
* @property edges
* @property attributes
*/
@Serializable
data class CytoscapeGraph(
val nodes: List,
val edges: List,
val attributes: Attributes = Attributes(),
) {
/**
* @property name
*/
@Serializable
data class Attributes(val name: String = "Demo graph")
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy