spring-web-modules/api/src/main/kotlin/com/cubetiqs/web/model/response/ApiInfoResponse.kt
Sambo Chea 5efe14c78a
Some checks reported errors
continuous-integration/drone/push Build was killed
Fixed and remove git source from build
2023-03-09 18:55:00 +07:00

19 lines
566 B
Kotlin

package com.cubetiqs.web.model.response
import io.swagger.v3.oas.annotations.media.Schema
@Schema(name = "ApiInfoResponse", description = "ApiInfoResponse")
data class ApiInfoResponse(
val name: String,
val info: String,
val service: String,
val version: String,
val date: String,
val authors: Collection<ApiInfoAuthorResponse> = listOf(),
) : BaseRequestModel
@Schema(name = "ApiInfoAuthorResponse", description = "ApiInfoAuthorResponse")
data class ApiInfoAuthorResponse(
val name: String,
val email: String,
) : BaseRequestModel