mirror of
https://github.com/fergalmoran/tvnoms.git
synced 2025-12-22 09:18:43 +00:00
10 lines
200 B
C#
10 lines
200 B
C#
namespace TvNoms.Core.Utilities;
|
|
|
|
public interface IPageable<T> : IEnumerable<T> {
|
|
long Offset { get; }
|
|
int Limit { get; }
|
|
long Length { get; }
|
|
long? Previous { get; }
|
|
long? Next { get; }
|
|
}
|