8 lines
269 B
C#
8 lines
269 B
C#
using LiteCqrs;
|
|
using TeleWave.Application.Common.Models;
|
|
|
|
namespace TeleWave.Application.Streaming.GetPublicEpg;
|
|
|
|
public sealed record GetPublicEpgQuery(string Slug, DateTimeOffset FromUtc, DateTimeOffset ToUtc)
|
|
: IQuery<Result<IReadOnlyList<PublicEpgEntryDto>>>;
|