📄 src/Api/YouTubeAuth/YouTubeScopeRequirement.cs
1 2 3 4 5 6 7
using System.Collections.Generic;
using Microsoft.AspNetCore.Authorization;

namespace Slopper.Api.YouTubeAuth;

internal sealed record YouTubeScopeRequirement(params IReadOnlyCollection<string> Scopes) : IAuthorizationRequirement;