using System.Linq; using System.Threading; using System.Threading.Tasks; namespace Svrnty.CQRS.DynamicQuery.Abstractions; /// /// Marker interface for custom queryable providers that project entities to DTOs. /// Extends for semantic clarity in registration. /// /// The DTO/Item type returned by the queryable. public interface IQueryableProviderOverride : IQueryableProvider { }