Files

11 lines
213 B
C#
Raw Permalink Normal View History

2025-12-11 10:20:10 +09:00
using System.ComponentModel.DataAnnotations;
namespace TriliumMind.Data.Entities;
public class Config
{
[Key]
public string Key { get; set; } = null!;
public string Value { get; set; } = null!;
}