YouTubeLiveStreamInfo.cs 507 B

1234567891011121314151617
  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. int ViewerCount = 0,
  11. DateTime? ViewerCountUpdatedAt = null
  12. )
  13. {
  14. public bool IsLive => LiveBroadcastContent == "live";
  15. public bool IsUpcoming => LiveBroadcastContent == "upcoming";
  16. }