elliebot/src/Ellie.Bot.Modules.Gambling/Gambling/AnimalRacing/AnimalRaceService.cs
2023-08-03 21:33:06 +12:00

9 lines
No EOL
240 B
C#

#nullable disable
using Ellie.Modules.Gambling.Common.AnimalRacing;
namespace Ellie.Modules.Gambling.Services;
public class AnimalRaceService : IEService
{
public ConcurrentDictionary<ulong, AnimalRace> AnimalRaces { get; } = new();
}