Initial commit.
This commit is contained in:
10
Data/Entities/Config.cs
Normal file
10
Data/Entities/Config.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace TriliumMind.Data.Entities;
|
||||
|
||||
public class Config
|
||||
{
|
||||
[Key]
|
||||
public string Key { get; set; } = null!;
|
||||
public string Value { get; set; } = null!;
|
||||
}
|
||||
Reference in New Issue
Block a user