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

@@ -14,4 +14,5 @@ public class Config : BaseModel
[StringLength(255)]
public string Description { get; set; } = string.Empty;
public bool IsSecret { get; set; } = false;
}