// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Linq; namespace Microsoft.AspNet.Identity { /// /// Provides an abstraction for querying roles in a User store. /// /// The type encapsulating a user. public interface IQueryableUserStore : IUserStore where TUser : class { /// /// Returns an collection of users. /// /// An collection of users. IQueryable Users { get; } } }