mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-07-04 06:22:57 +00:00
8 lines
177 B
C#
8 lines
177 B
C#
|
using System.Text;
|
|||
|
|
|||
|
namespace AIStudio.Tools;
|
|||
|
|
|||
|
public sealed class SlideTextContent(string textContent) : ISlideContent
|
|||
|
{
|
|||
|
public StringBuilder Text => new(textContent);
|
|||
|
}
|