mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-12 20:21:37 +00:00
8 lines
277 B
C#
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);
|