Show the chosen model for any provider

This commit is contained in:
Thorsten Sommer 2024-05-19 16:10:57 +02:00
parent a2a1642c76
commit fc1ad26f6a
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -20,7 +20,7 @@ public readonly record struct Provider(string Id, string InstanceName, Providers
/// <returns>A string that represents the current provider in a human-readable format.</returns>
public override string ToString()
{
return $"{this.InstanceName} ({this.UsedProvider.ToName()})";
return $"{this.InstanceName} ({this.UsedProvider.ToName()}, {this.Model})";
}
#endregion