org.octopusden.octopus.vcsfacade.dto.IndexReport.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vcs-facade Show documentation
Show all versions of vcs-facade Show documentation
Octopus module: vcs-facade
The newest version!
package org.octopusden.octopus.vcsfacade.dto
import java.util.Date
data class IndexReport(
val repositories: List
) {
data class IndexReportRepository(val sshUrl: String, val scanRequired: Boolean, val lastScanAt: Date?)
}