SearchItems.cs

Go to the documentation of this file.
00001 using System;
00002 using System.Collections.Generic;
00003 using System.Text;
00004 
00005 namespace HouseOver.THARM.Attributes
00006 {
00010     [AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
00011     class SearchItems : Attribute
00012     {
00013         private string humanReadableName;
00014         
00018         public SearchItems(){}
00019         
00024         public SearchItems(string name)
00025         {
00026             humanReadableName = name;
00027         }
00028         
00032         public string HumanReadableName { get { return humanReadableName; } }
00033 
00034     }
00035 }

Generated on Wed Jan 10 03:42:41 2007 for THARM by  doxygen 1.5.1-p1