Add system settings management api
This commit is contained in:
13
src/main/kotlin/top/fatweb/api/vo/system/SettingsVo.kt
Normal file
13
src/main/kotlin/top/fatweb/api/vo/system/SettingsVo.kt
Normal file
@@ -0,0 +1,13 @@
|
||||
package top.fatweb.api.vo.system
|
||||
|
||||
data class SettingsVo(
|
||||
val mail: MailSettingsVo?
|
||||
) {
|
||||
data class MailSettingsVo(
|
||||
val host: String?,
|
||||
val port: Int?,
|
||||
val username: String?,
|
||||
val password: String?,
|
||||
val from: String?
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user