Was.OrcSearch – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System.Collections.Generic;
2  
3 namespace Was.OrcSearch.Models.Interfaces
4 {
5 public interface IMetadataCollection : IEnumerable<IMetadata>
6 {
7 IEnumerable<IMetadata> All { get; }
8  
9 IMetadata GetMetadata(string propertyName);
10 }
11 }