namespace AIStudio.Chat; public interface IImageSource { /// /// The type of the image source. /// /// /// Is the image source a URL, a local file path, a base64 string, etc.? /// public ContentImageSource SourceType { get; init; } /// /// The image source. /// public string Source { get; set; } }