Files
YouTubeViewers/YouTubeViewers.Domain/Queries/IGetAllYouTubeViewersQuery.cs
2022-08-22 15:56:12 +02:00

15 lines
312 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using YouTubeViewers.Domain.Models;
namespace YouTubeViewers.Domain.Queries
{
public interface IGetAllYouTubeViewersQuery
{
Task<IEnumerable<YouTubeViewer>> Execute();
}
}