BotSharp/src/Infrastructure/BotSharp.Abstraction/Routing/Models/DecomposedStep.cs

10 lines
222 B
C#
Raw Normal View History

2024-02-01 18:32:16 +00:00
namespace BotSharp.Abstraction.Routing.Models;
public class DecomposedStep
{
public string Description { get; set; }
[JsonPropertyName("total_remaining_steps")]
public int TotalRemainingSteps { get; set; }
}