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