AI-Studio/app/MindWork AI Studio/Provider/OpenRouter/OpenRouterModelsResponse.cs
2025-12-15 19:31:51 +01:00

8 lines
277 B
C#

namespace AIStudio.Provider.OpenRouter;
/// <summary>
/// A data model for the response from the OpenRouter models endpoint.
/// </summary>
/// <param name="Data">The list of models.</param>
public readonly record struct OpenRouterModelsResponse(IList<OpenRouterModel> Data);