Files
2023-07-28 23:14:05 +03:00

10 lines
263 B
C#

using West.TelegramBot.ContentStore.API;
namespace West.TelegramBot.ContentStore.Service.SomeRandomApi;
public class PandaService : SomeRandomApiAbstractService
{
public PandaService(ISomeRandomApi api) : base(api, "panda", "Панда", 40, 160)
{ }
}