BotSharp/src/Infrastructure/BotSharp.OpenAPI/ViewModels/Conversations/MigrateLatestStateRequest.cs

8 lines
190 B
C#
Raw Normal View History

2025-03-06 22:46:38 +00:00
namespace BotSharp.OpenAPI.ViewModels.Conversations;
public class MigrateLatestStateRequest
{
public int BatchSize { get; set; } = 1000;
public int ErrorLimit { get; set; } = 10;
}