Files
telegram-bot/modules/ContentStore/Service/IRandomMediaService.cs
T

10 lines
230 B
C#
Raw Normal View History

2022-02-16 18:08:02 +02:00
using West.TelegramBot.ContentStore.Model;
2022-02-16 17:07:30 +02:00
namespace West.TelegramBot.ContentStore.Service;
public interface IRandomMediaService
{
2022-02-16 18:08:02 +02:00
public StoreItem StoreItem { get; }
2022-02-16 17:07:30 +02:00
public Task<RandomMedia> GetRandomMediaAsync();
}