Files

10 lines
267 B
C#
Raw Permalink 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 RaccoonService : SomeRandomApiAbstractService
{
2023-07-28 23:13:56 +03:00
public RaccoonService(ISomeRandomApi api) : base(api, "raccoon", "Енот", 40, 160)
2023-07-28 20:04:05 +03:00
{ }
}