namespace ReC.Client.Api
{
///
/// Represents the result of a batch RecAction invocation.
///
public class BatchRecActionViewResponse
{
/// Total number of actions that were processed.
public int TotalActionCount { get; set; }
/// Number of actions that resulted in an exception.
public int ActionExceptionCount { get; set; }
}
}