Data structure for image URL

This commit is contained in:
Thorsten Sommer 2024-05-04 11:11:42 +02:00
parent 3224cfb39c
commit 9f0c1dc410
Signed by: tsommer
GPG Key ID: 371BBA77A02C0108

View File

@ -0,0 +1,7 @@
namespace AIStudio.Provider;
/// <summary>
/// An image URL.
/// </summary>
/// <param name="url">The image URL.</param>
public readonly record struct ImageURL(string url);