lapis-mc/yggdrasil

View on GitHub
src/main/kotlin/com/lapismc/minecraft/yggdrasil/rest/Response.kt

Summary

Maintainability
A
0 mins
Test Coverage
package com.lapismc.minecraft.yggdrasil.rest

/**
 * Base class for all responses that could be received.
 */
abstract class Response {
    /**
     * Indicates whether the request was successful.
     */
    abstract val successful: Boolean
}