TigerEmu/Game/Settings/ISettingsDao.cs

6 lines
131 B
C#

namespace Tiger.Game.Settings;
public interface ISettingsDao
{
Task<IReadOnlyDictionary<string, object>> GetSettingsAsync();
}