📄
StackExchangeOptions.cs
using System.ComponentModel.DataAnnotations; using Microsoft.Extensions.Options; namespace MSearch.SearchProviders.StackExchange; internal sealed class StackExchangeOptions { [Required] public required string ApiKey { get; set; } [Required] public required string Site { get; set; } } [OptionsValidator] internal sealed partial class StackExchangeOptionsValidator : IValidateOptions<StackExchangeOptions>;