📄 MicrosoftLearnSearchResult.cs
1 2 3 4 5 6 7 8 9 10
using System.Text.Json.Serialization;

namespace MSearch.SearchProviders.MicrosoftLearn;

internal sealed record MicrosoftLearnSearchResult(
    [property: JsonPropertyName("title")] string Title,
    [property: JsonPropertyName("description")] string Description,
    [property: JsonPropertyName("url")] string Url
);