elliebot/src/Ellie.Bot.Modules.Gambling/Gambling/AnimalRacing/AnimalRaceService.cs

9 lines
240 B
C#
Raw Normal View History

2023-08-03 21:33:06 +12:00
#nullable disable
using Ellie.Modules.Gambling.Common.AnimalRacing;
namespace Ellie.Modules.Gambling.Services;
public class AnimalRaceService : IEService
{
public ConcurrentDictionary<ulong, AnimalRace> AnimalRaces { get; } = new();
}