YouTubeVideoStats.cs 388 B

123456789101112131415
  1. namespace Application.Abstractions.YouTube;
  2. /// <summary>
  3. /// YouTube video statistics + liveStreamingDetails 통합 DTO (일일 배치 집계용)
  4. /// </summary>
  5. public sealed record YouTubeVideoStats(
  6. string VideoID,
  7. string Title,
  8. string ChannelID,
  9. DateTime? ActualStartTime,
  10. DateTime? ActualEndTime,
  11. long ViewCount,
  12. long LikeCount,
  13. bool IsLiveStream
  14. );