mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 22:29:07 +00:00
14 lines
356 B
C#
14 lines
356 B
C#
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)
|
|
{
|
|
#region Overrides of ValueType
|
|
|
|
public override string ToString() => string.IsNullOrWhiteSpace(this.Id) ? "no model selected" : this.Id;
|
|
|
|
#endregion
|
|
} |