AI-Studio/app/MindWork AI Studio/Provider/OpenRouter/OpenRouterModelsResponse.cs

8 lines
277 B
C#
Raw Normal View History

2025-12-15 18:31:51 +00:00
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);