mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-05-02 04:22:04 -04:00
Added a ValueType concept for Settings. Currently unused but planned to assist with editing settings from chat.
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
using KfChatDotNetBot.Models.DbModels;
|
||||
|
||||
namespace KfChatDotNetBot.Models;
|
||||
|
||||
public class BuiltInSettingsModel
|
||||
@@ -10,4 +12,5 @@ public class BuiltInSettingsModel
|
||||
public string? Default { get; set; }
|
||||
public required bool IsSecret { get; set; }
|
||||
public required TimeSpan CacheDuration { get; set; } = TimeSpan.Zero;
|
||||
public required SettingValueType ValueType { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user