mirror of
https://github.com/riperiperi/FreeSO
synced 2026-08-13 20:26:13 -04:00
12 lines
295 B
C#
12 lines
295 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace FSO.Server.Database
|
|
{
|
|
public class DatabaseConfiguration
|
|
{
|
|
[JsonProperty("engine")]
|
|
public string Engine { get; set; } = "mysql";
|
|
[JsonProperty("connectionString")]
|
|
public string ConnectionString { get; set; }
|
|
}
|
|
}
|