Files
KfChatDotNet/KfChatDotNetBot/Settings/SettingValue.cs
barelyprofessional 71b46d73d2 Added in memory caching
2024-08-17 23:45:29 +08:00

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