11 lines
213 B
C#
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!;
|
|||
|
|
}
|