mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-12 15:27:21 +01:00
8 lines
243 B
C#
8 lines
243 B
C#
namespace MareSynchronosShared.Utils.Configuration;
|
|
|
|
public interface IMareConfiguration
|
|
{
|
|
T GetValueOrDefault<T>(string key, T defaultValue);
|
|
T GetValue<T>(string key);
|
|
string SerializeValue(string key, string defaultValue);
|
|
}
|