Files
KfChatDotNet/KfChatDotNetKickBot/Settings/SettingValue.cs

9 lines
262 B
C#

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;
}