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