YouTubeLiveStreamInfo.cs 439 B

123456789101112131415
  1. namespace Application.Abstractions.YouTube;
  2. public sealed record YouTubeLiveStreamInfo(
  3. string VideoId,
  4. string Title,
  5. string ChannelId,
  6. string LiveBroadcastContent, // "live" | "upcoming" | "none"
  7. string? ActiveLiveChatId,
  8. DateTime? ScheduledStartTime,
  9. DateTime? ActualStartTime
  10. )
  11. {
  12. public bool IsLive => LiveBroadcastContent == "live";
  13. public bool IsUpcoming => LiveBroadcastContent == "upcoming";
  14. }