Files
TriliumMind/Data/Entities/Config.cs
2025-12-11 10:20:10 +09:00

11 lines
213 B
C#

using System.ComponentModel.DataAnnotations;
namespace TriliumMind.Data.Entities;
public class Config
{
[Key]
public string Key { get; set; } = null!;
public string Value { get; set; } = null!;
}