mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-07-28 01:02:56 +00:00
8 lines
185 B
C#
8 lines
185 B
C#
using System.Text;
|
|
|
|
namespace AIStudio.Tools;
|
|
|
|
public sealed class SlideImageContent(string base64Image) : ISlideContent
|
|
{
|
|
public StringBuilder Base64Image => new(base64Image);
|
|
} |