15 lines
330 B
C#
15 lines
330 B
C#
using System;
|
|
|
|
namespace XericUI.ReflectionUIGenerator
|
|
{
|
|
/// <summary>
|
|
/// 不可为空
|
|
/// </summary>
|
|
public class XuiavrgNotEmptyAttribute : Attribute, IXuiavrgAttribute
|
|
{
|
|
public void BindProperty(XuiavrgInspectorProperty property)
|
|
{
|
|
property.notEmpty = true;
|
|
}
|
|
}
|
|
} |