SaleCriteria.cs

Go to the documentation of this file.
00001 using System;
00002 using System.Collections.Generic;
00003 using System.Text;
00004 
00008 namespace HouseOver.THARM.Attributes
00009 {
00013     [AttributeUsage(AttributeTargets.Property, AllowMultiple = false)]
00014     class SaleCriteria : Attribute
00015     {
00016         private string humanReadableName;
00017         
00021         public SaleCriteria(){}
00026         
00027         public SaleCriteria(string name) {
00028             humanReadableName = name;
00029         }
00030 
00034         public string HumanReadableName { get { return humanReadableName; } }
00035 
00036     }
00037 }

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