12 lines
271 B
C#
12 lines
271 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace WalkingTec.Mvvm.Core
|
|
{
|
|
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Class, AllowMultiple = false)]
|
|
public class ValidateFormItemOnlyAttribute : Attribute
|
|
{
|
|
}
|
|
}
|