TigerEmu/Game/Settings/ISettingsDao.cs

6 lines
131 B
C#
Raw Normal View History

2023-09-23 11:11:07 +00:00
namespace Tiger.Game.Settings;
public interface ISettingsDao
{
Task<IReadOnlyDictionary<string, object>> GetSettingsAsync();
}