update desktop part

This commit is contained in:
2022-01-04 22:47:37 +06:00
parent 9a95bddf08
commit 26fe225577
4 changed files with 104 additions and 72 deletions

View File

@@ -6,13 +6,13 @@ const val defaultProjectName = "\${project.name}"
const val defaultProjectDescription = "\${project.name}"
@Serializable
sealed class GpgSigning {
sealed class GpgSigning(val name: String) {
@Serializable
object Disabled : GpgSigning()
object Disabled : GpgSigning("Disabled")
@Serializable
object Optional : GpgSigning()
object Optional : GpgSigning("Optional")
@Serializable
object Enabled : GpgSigning()
object Enabled : GpgSigning("Enabled")
}
@Serializable