Added data structure for models

This commit is contained in:
Thorsten Sommer 2024-05-04 10:58:32 +02:00
parent bbb9d883a1
commit 36fb450fad
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -0,0 +1,7 @@
namespace AIStudio.Provider;
/// <summary>
/// The data model for the model to use.
/// </summary>
/// <param name="Id">The model's ID.</param>
public readonly record struct Model(string Id);