Interface IListResult<T>
This interface is defined to standardize to return a list of items to clients.
Namespace: Code.Library.Dtos
Assembly: Code.Library.dll
Syntax
public interface IListResult<T>
Type Parameters
Name | Description |
---|---|
T | Type of the items in the Items list |
Properties
| Improve this Doc View SourceItems
List of items.
Declaration
IReadOnlyList<T> Items { get; set; }
Property Value
Type | Description |
---|---|
IRead |