Command.cs 416 B

123456789101112131415
  1. using Application.Abstractions.Messaging;
  2. namespace Application.Features.Api.YouTube.PubSubNotify;
  3. /// <summary>
  4. /// YouTube PubSub Atom Feed 알림 처리
  5. /// 새 영상/생방송 알림을 받아 라이브 판별 → BroadcastSession 생성
  6. /// </summary>
  7. public sealed record Command(
  8. string VideoID,
  9. string YouTubeChannelID,
  10. string Title,
  11. DateTime Published,
  12. DateTime Updated
  13. ) : ICommand;