| 123456789101112131415 |
- namespace Application.Abstractions.YouTube;
- /// <summary>
- /// YouTube video statistics + liveStreamingDetails 통합 DTO (일일 배치 집계용)
- /// </summary>
- public sealed record YouTubeVideoStats(
- string VideoID,
- string Title,
- string ChannelID,
- DateTime? ActualStartTime,
- DateTime? ActualEndTime,
- long ViewCount,
- long LikeCount,
- bool IsLiveStream
- );
|