Init
This commit is contained in:
12
Configuration.cs
Normal file
12
Configuration.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
// Configuration.cs
|
||||
using LiteDB;
|
||||
|
||||
namespace FreelancerListServer
|
||||
{
|
||||
public class Configuration
|
||||
{
|
||||
[BsonId] // Primärschlüssel in LiteDB
|
||||
public string Key { get; set; }
|
||||
public string Value { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user