LarryHsiao/Vesta

View on GitHub
src/main/java/com/silverhetch/vesta/target/Target.kt

Summary

Maintainability
A
0 mins
Test Coverage
package com.silverhetch.vesta.target

/**
 * Represent a real world object.
 */
interface Target {

    /**
     * The id of this [Target]
     */
    fun id(): Long

    /**
     * The target name
     */
    fun name(): String

    /**
     * delete this object.
     */
    fun delete()
}