2011-02-18 16:54:48 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
2011-03-11 18:49:48 +00:00
|
|
|
|
namespace Tanshu.Accounts.Contracts.Attributes
|
2011-02-18 16:54:48 +00:00
|
|
|
|
{
|
|
|
|
|
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
|
|
|
|
|
public class AllowNullAttribute : Attribute
|
|
|
|
|
{
|
2011-03-11 18:49:48 +00:00
|
|
|
|
private string _message = string.Empty;
|
|
|
|
|
|
2011-02-18 16:54:48 +00:00
|
|
|
|
public string Message
|
|
|
|
|
{
|
2011-03-11 18:49:48 +00:00
|
|
|
|
get { return _message; }
|
|
|
|
|
set { _message = value; }
|
2011-02-18 16:54:48 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2011-03-11 18:49:48 +00:00
|
|
|
|
}
|