10 lines
222 B
C#
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; }
|
|
}
|