All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dev.sunnyday.test.impact.plugin.domain.model.ImpactProject.kt Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package dev.sunnyday.test.impact.plugin.domain.model

import java.io.Serializable

internal data class ImpactProject(
    val path: ProjectPath,
    val dirPath: String,
    var hasChanges: Boolean = false
) : Serializable {

    override fun toString(): String {
        return path
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy