public enum RequestPaginationType : int { Indeterminate = 0, Before = 1, After = 2 } Passing After or Before will result in the same CB-Before and CB-After being passed, this needs to be before and after.
public enum RequestPaginationType : int
{
Indeterminate = 0,
Before = 1,
After = 2
}
Passing After or Before will result in the same CB-Before and CB-After being passed, this needs to be before and after.