Show / Hide Table of Contents

Interface IModelPagedListResult<TModel>

Interface that represents the concrete class with full results of the model paginated collection.

Inherited Members
IModelResult.TraceKey
IModelResult.ModelStatusCode
IModelResult.Message
IModelResult.IsModelResultValid()
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.

Back to top Generated by DocFX