Statistics
| Branch: | Revision:

root / trunk / hammock / src / net35 / Hammock / Attributes / IValidatingAttribute.cs @ 0eea575a

History | View | Annotate | Download (183 Bytes)

1
using System.Reflection;
2

    
3
namespace Hammock.Attributes
4
{
5
    public interface IValidatingAttribute
6
    {
7
        string TransformValue(PropertyInfo property, object value);
8
    }
9
}