Command.cs 383 B

12345678910
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Admin.Channel.YouTubePubSub.ManualDetect;
  4. /// <summary>
  5. /// videoId 기반 수동 라이브 감지 트리거.
  6. /// PubSub 누락 시 운영자가 직접 파이프라인 실행.
  7. /// </summary>
  8. public sealed record Command(string VideoID, string YouTubeChannelID) : ICommand<Result>;