Interface IModelPagedListResult<TModel>
Interface that represents the concrete class with full results of the model paginated collection.
Inherited Members
Namespace: StoneCo.Framework.Model.ModelRules
Assembly: cs.temp.dll.dll
Syntax
public interface IModelPagedListResult<TModel> : IModelResult where TModel : IModel
Type Parameters
Name | Description |
---|---|
TModel | The type of the model to be returned in the result. |
Properties
PagedListModels
Collection model of the type TModel.
Declaration
PagedList<TModel> PagedListModels { get; }
Property Value
Type | Description |
---|---|
PagedList<TModel> | Collection of the model or null. |