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 }