0f323f8fab
Signed-off-by: unknown <tanshu@.(none)>
19 lines
432 B
C#
19 lines
432 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Tanshu.Accounts.Contracts
|
|
{
|
|
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
|
|
public class SecurityAttribute : Attribute
|
|
{
|
|
private string message = string.Empty;
|
|
public string Message
|
|
{
|
|
get { return message; }
|
|
set { message = value; }
|
|
}
|
|
}
|
|
}
|