Response.cs 294 B

1234567891011
  1. namespace Application.Features.Admin.Channel.YouTubePubSub.GetLiveStatus;
  2. public sealed record LiveItem(
  3. string YouTubeChannelID,
  4. string? ChannelName,
  5. string VideoID,
  6. string Title,
  7. DateTime? ActualStartTime
  8. );
  9. public sealed record Response(IReadOnlyList<LiveItem> Items);