Was.OrcSearch – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using Was.OrcSearch.Models.Interfaces;
2  
3 namespace Was.OrcSearch.Metadata.Interfaces
4 {
5 public interface ISearchableMetadata : IMetadata
6 {
7 string SearchName { get; set; }
8  
9 /// <summary>
10 /// Gets or sets a value indicating whether this property must be analyzed. Set this value to <c>true</c> for common
11 /// text
12 /// or <c>false</c> for unique keys such as product ids.
13 /// <para />
14 /// The default value is <c>true</c>.
15 /// </summary>
16 /// <value><c>true</c> if analyze; otherwise, <c>false</c>.</value>
17 bool Analyze { get; set; }
18 }
19 }