diff --git a/KfChatDotNetBot/Models/DbModels/SettingDbModel.cs b/KfChatDotNetBot/Models/DbModels/SettingDbModel.cs
index d6e81f8..62f9915 100644
--- a/KfChatDotNetBot/Models/DbModels/SettingDbModel.cs
+++ b/KfChatDotNetBot/Models/DbModels/SettingDbModel.cs
@@ -26,10 +26,22 @@ public class SettingDbModel
public enum SettingValueType
{
Boolean,
- Text, // This includes values which are only decimals
- Array, // It's presumed that your array contains text, don't use this if your array contains complex types
- // You can use the array value type on delimited values or JSON arrays. For JSON, it's presumed to be like ['str']
- Complex, // Basically for JSON blobs that are encoded into settings
- Undefined // Default value. Should only be set to this for orphaned settings. My suggestion is you don't allow users
- // to interact with settings with an undefined type
+ ///
+ /// This includes values which are only decimals
+ ///
+ Text,
+ ///
+ /// It's presumed that your array contains text, don't use this if your array contains complex types
+ /// You can use the array value type on delimited values or JSON arrays. For JSON, it's presumed to be like ['str']
+ ///
+ Array,
+ ///
+ /// Basically for JSON blobs that are encoded into settings
+ ///
+ Complex,
+ ///
+ /// Default value. Should only be set to this for orphaned settings. My suggestion is you don't allow users
+ /// to interact with settings with an undefined type
+ ///
+ Undefined
}
\ No newline at end of file