using Core.Models.Eft.Common.Tables;
namespace Core.Services;
public class MatchBotDeatilsCacheService
{
///
/// Store a bot in the cache, keyed by its name
///
/// Bot details to cache
public void CacheBot(BotBase botToCache)
{
throw new NotImplementedException();
}
///
/// Clean the cache of all bot details
///
public void ClearCache()
{
throw new NotImplementedException();
}
///
/// Find a bot in the cache by its name and side
///
/// Name of bot to find
/// Side of the bot to find
/// Bot details
public BotBase GetBotByNameAndSide(string botName, string botSide)
{
throw new NotImplementedException();
}
}