mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/JiboExperiments.git
synced 2026-06-18 22:26:11 +00:00
10 lines
344 B
C#
10 lines
344 B
C#
namespace Jibo.Runtime.Abstractions;
|
|
|
|
public sealed class SpeakAction : PlanAction
|
|
{
|
|
public override PlanActionType Type => PlanActionType.Speak;
|
|
public string Text { get; init; } = string.Empty;
|
|
public string? Voice { get; init; }
|
|
public string? Style { get; init; }
|
|
public bool CanBeInterrupted { get; init; } = true;
|
|
} |