using System.Collections.Generic; namespace Abp.Application.Services.Dto { /// /// This interface is defined to standardize to return a list of items to clients. /// /// Type of the items in the list public interface IListResult { /// /// List of items. /// IReadOnlyList Items { get; set; } } }