mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-07-04 06:22:57 +00:00
10 lines
201 B
C#
10 lines
201 B
C#
|
namespace AIStudio.Tools;
|
|||
|
|
|||
|
public sealed class Slide
|
|||
|
{
|
|||
|
public bool Delivered { get; set; }
|
|||
|
|
|||
|
public int Position { get; init; }
|
|||
|
|
|||
|
public List<ISlideContent> Content { get; } = new();
|
|||
|
}
|