using MareSynchronosShared.Utils.Configuration; namespace MareSynchronosShared.Services; public interface IConfigurationService where T : class, IMareConfiguration { bool IsMain { get; } T1 GetValue(string key); T1 GetValueOrDefault(string key, T1 defaultValue); string ToString(); }