Files
telegram-bot/modules/ContentStore/Service/SomeRandomApi/KangarooService.cs
T

10 lines
276 B
C#
Raw Normal View History

2023-07-28 23:13:56 +03:00
using West.TelegramBot.ContentStore.API;
2023-07-28 20:04:05 +03:00
namespace West.TelegramBot.ContentStore.Service.SomeRandomApi;
public class KangarooService : SomeRandomApiAbstractService
{
2023-07-28 23:13:56 +03:00
public KangarooService(ISomeRandomApi api) : base(api, "kangaroo", "Кенгуру", 40, 175)
2023-07-28 20:04:05 +03:00
{ }
}