Set default language based on Windows language.

This commit is contained in:
Burak Kaan Köse
2026-04-22 22:39:19 +02:00
parent 39cde10fab
commit 81e28129b7
6 changed files with 158 additions and 10 deletions
@@ -2,6 +2,8 @@
public interface IConfigurationService
{
bool Contains(string key);
void Set(string key, object value);
T Get<T>(string key, T defaultValue = default);