using System.Collections.Generic;
namespace xModels.Dtos {
///
/// Result of a Requested Page of Data based on Cursor ...
/// this only be Used in GraphQL ...
///
///
public class XPageResponse {
public List Nodes { get; set; }
public int TotalCount { get; set; }
public bool HasNextPage { get; set; }
public bool HasPreviousPage { get; set; }
}
}