using Application.Abstractions.Messaging;
using SharedKernel.Results;
namespace Application.Features.Api.MyPage.UnlinkYouTube;
///
/// YouTube 연동 해제 (회원 탈퇴는 아님).
/// 회원이 자신의 YouTube OAuth 권한·캐시 데이터를 즉시 폐기하고자 할 때 사용.
/// YouTube API Services ToS 의 "사용자 데이터 삭제 요청 즉시 처리" 항목 enforcement.
///
public sealed record Command(int MemberID) : ICommand;