Files

10 lines
260 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 BirdService : SomeRandomApiAbstractService
{
2023-07-28 23:13:56 +03:00
public BirdService(ISomeRandomApi api) : base(api, "bird", "Птица", 40, 165)
2023-07-28 20:04:05 +03:00
{ }
}