/**
 * Interface defining the property object that describes the pagination list options.
 *
 * @see [ListOptions](https://github.com/goboomtown/entities-ts/tree/master/docs)
 *
 * @OvationCXMApi
 */
export interface ListOptions {
    limit: number;
    start: number;
}
