mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-04-30 03:22:04 -04:00
9 lines
254 B
C#
9 lines
254 B
C#
using KfChatDotNetBot.Models.DbModels;
|
|
|
|
namespace KfChatDotNetBot.Settings;
|
|
|
|
public class SettingValue(string? value, SettingDbModel? dbEntry)
|
|
{
|
|
public string? Value { get; set; } = value;
|
|
public SettingDbModel? DbEntry { get; set; } = dbEntry;
|
|
} |