mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-02-12 19:21:36 +00:00
8 lines
219 B
C#
8 lines
219 B
C#
|
|
namespace AIStudio.Provider.Anthropic;
|
||
|
|
|
||
|
|
public record SubContentImageUrl : ISubContentImageSource
|
||
|
|
{
|
||
|
|
public SubContentImageType Type => SubContentImageType.URL;
|
||
|
|
|
||
|
|
public string Url { get; init; } = string.Empty;
|
||
|
|
}
|