1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Bowin.Web.Controls.Mvc
- {
- public class BaseFormControlOptions:BaseControlOptions
- {
- public BaseFormControlOptions()
- {
- Validator = new ValidatorBox();
- }
- /// <summary>
- /// 验证类属性,MVC模式下不推荐使用
- /// </summary>
- public bool? IsRequired { get; set; }
- /// <summary>
- /// 验证类属性,MVC模式下不推荐使用
- /// </summary>
- public ValidatorBox Validator { get; set; }
- }
- }
|