using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Bowin.Web.Controls.Mvc { public class RichTextOptions : BaseFormControlOptions { public RichTextOptions() { this.IsRequired = false; } public int? Width { get; set; } public int? Height { get; set; } public IDictionary HtmlAttributes { get; set; } /// /// 输入框默认值 /// public string Value { get; set; } } }