iotgateway/WalkingTec.Mvvm/WalkingTec.Mvvm.Core/Attributes/ValidateFormItemOnlyAttribute.cs
2021-12-14 14:10:44 +08:00

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
{
}
}