Files

10 lines
291 B
C#
Raw Permalink Normal View History

2023-07-28 23:13:56 +03:00
using West.TelegramBot.ContentStore.API;
namespace West.TelegramBot.ContentStore.Service.SomeRandomApi;
2023-07-28 20:04:05 +03:00
public class RedPandaService : SomeRandomApiAbstractService
{
2023-07-28 23:13:56 +03:00
public RedPandaService(ISomeRandomApi api) : base(api, "red_panda", "Красная панда", 40, 150)
2023-07-28 20:04:05 +03:00
{ }
}