BotSharp/src/Infrastructure/BotSharp.Abstraction/Routing/Models/DecomposedStep.cs
2024-02-01 12:32:16 -06:00

10 lines
222 B
C#

namespace BotSharp.Abstraction.Routing.Models;
public class DecomposedStep
{
public string Description { get; set; }
[JsonPropertyName("total_remaining_steps")]
public int TotalRemainingSteps { get; set; }
}