13 lines
224 B
Kotlin
13 lines
224 B
Kotlin
/*
|
|
* SPDX-FileCopyrightText: 2023 Linnea Gräf <nea@nea.moe>
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
package moe.nea.firmament.gui.config
|
|
|
|
abstract class ManagedConfigElement {
|
|
abstract val name: String
|
|
|
|
}
|