Add system settings management api

This commit is contained in:
2023-12-04 17:13:20 +08:00
parent 5c8775bf12
commit 902fcef9b2
18 changed files with 229 additions and 149 deletions

View 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?
)
}