feat(config): add IsSecret property to Config

This commit is contained in:
ShiYu
2025-05-25 00:09:30 +08:00
parent 12e2023e8c
commit 085b0dacb7
4 changed files with 41 additions and 12 deletions

View File

@@ -12,4 +12,6 @@ public record SetConfigRequest
[StringLength(255, ErrorMessage = "描述长度不能超过255个字符")]
public string? Description { get; set; }
public bool? IsSecret { get; set; }
}