using Telegram.Bot.Types; using West.TelegramBot.ContentStore.Model; namespace West.TelegramBot.ContentStore.Service; public interface IRandomMediaService { public StoreItem StoreItem { get; } public Task GetRandomMediaAsync(); public Task CanView(Chat chat, User user) => Task.FromResult(true); }