mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-05-02 20:42:04 -04:00
Big update introducing ghetto command interface, settings, database and howl.gg bet feed scraping
This commit is contained in:
9
KfChatDotNetKickBot/Settings/SettingValue.cs
Normal file
9
KfChatDotNetKickBot/Settings/SettingValue.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
using KfChatDotNetKickBot.Models.DbModels;
|
||||
|
||||
namespace KfChatDotNetKickBot.Settings;
|
||||
|
||||
public class SettingValue(string? value, SettingDbModel? dbEntry)
|
||||
{
|
||||
public string? Value { get; set; } = value;
|
||||
public SettingDbModel? DbEntry { get; set; } = dbEntry;
|
||||
}
|
||||
Reference in New Issue
Block a user