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