Interface IListResult<T>
This interface is defined to standardize to return a list of items to clients.
Namespace: Volo.Abp.Application.Dtos
Assembly: Volo.Abp.Ddd.Application.Contracts.dll
Syntax
public interface IListResult<T>
Type Parameters
Name | Description |
---|---|
T | Type of the items in the Items list |
Properties
Items
List of items.
Declaration
IReadOnlyList<T> Items { get; set; }
Property Value
Type | Description |
---|---|
IReadOnlyList<T> |