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 }