Files
SnowcloakServer/MareSynchronosServer/MareSynchronosShared/Utils/Configuration/IMareConfiguration.cs
2025-08-22 11:55:35 +01:00

9 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);
}