mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-05-02 20:42:04 -04:00
9 lines
262 B
C#
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;
|
|
} |