Was.OrcSearch – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 namespace Was.OrcSearch.Models
2 {
3 public class ReflectionObjectWithMetadata : ObjectWithMetadata
4 {
5 public ReflectionObjectWithMetadata(object instance)
6 : base(instance, new ReflectionMetadataCollection(instance.GetType()))
7 {
8 }
9 }
10 }