| Name | Message | Date |
|---|---|---|
| 📄 packages.lock.json | 8 hours ago | |
| 📄 ServiceCollectionExtensions.cs | 8 hours ago | |
| 📄 Spotify.csproj | 8 hours ago | |
| 📄 SpotifyOptions.cs | 8 hours ago | |
| 📄 SpotifySearchProvider.cs | 8 hours ago |
📄
SpotifyOptions.cs
using System.ComponentModel.DataAnnotations; using Microsoft.Extensions.Options; namespace MSearch.SearchProviders.Spotify; internal sealed class SpotifyOptions { [Required] public required string ClientId { get; set; } [Required] public required string ClientSecret { get; set; } } [OptionsValidator] internal sealed partial class SpotifyOptionsValidator : IValidateOptions<SpotifyOptions>;