Files
Sean Garrett 26b71ff76e reformatting
2023-07-06 13:00:55 +01:00

11 lines
309 B
C#

using System;
namespace MongoDbGenericRepository
{
/// <summary>
/// The IReadOnlyMongoRepository exposes the readonly functionality of the BaseMongoRepository.
/// </summary>
public interface IReadOnlyMongoRepository : IBaseReadOnlyRepository, IReadOnlyMongoRepository<Guid>
{
}
}