AI-Studio/app/MindWork AI Studio/Tools/SlideImageContent.cs
nilskruthoff 6eab9dc574
Improved docx and odt import (#890)
Co-authored-by: Thorsten Sommer <SommerEngineering@users.noreply.github.com>
2026-08-10 20:39:31 +02:00

10 lines
353 B
C#

namespace AIStudio.Tools;
/// <summary>
/// An image of a slide, ready to be appended to the slide's Markdown.
/// </summary>
/// <param name="markdownImage">The image as a Markdown image with an embedded data URI.</param>
public sealed class SlideImageContent(string markdownImage) : ISlideContent
{
public string MarkdownImage => markdownImage;
}