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

10 lines
263 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 KoalaService : SomeRandomApiAbstractService
{
2023-07-28 23:13:56 +03:00
public KoalaService(ISomeRandomApi api) : base(api, "koala", "Коала", 40, 180)
2023-07-28 20:04:05 +03:00
{ }
}