BotSharp/src/Infrastructure/BotSharp.OpenAPI/ViewModels/Conversations/MigrateLatestStateRequest.cs
2025-03-06 16:46:38 -06:00

8 lines
190 B
C#

namespace BotSharp.OpenAPI.ViewModels.Conversations;
public class MigrateLatestStateRequest
{
public int BatchSize { get; set; } = 1000;
public int ErrorLimit { get; set; } = 10;
}