Files
telegram-bot/modules/ContentStore/Service/IRandomMediaService.cs
T
2022-02-16 18:08:02 +02:00

10 lines
230 B
C#

using West.TelegramBot.ContentStore.Model;
namespace West.TelegramBot.ContentStore.Service;
public interface IRandomMediaService
{
public StoreItem StoreItem { get; }
public Task<RandomMedia> GetRandomMediaAsync();
}