using Admin.NET.Core.Util.LowCode.Front.Model; using Furion.Extras.Admin.NET.Util.LowCode.Front.Interface; namespace Furion.Extras.Admin.NET.Util.LowCode.Front.Model { public class Front_Base : IFront { public string Key { get; set; } public string Label { get; set; } public string Type { get; set; } /// /// 配置 /// public T Options { get; set; } /// /// 数据字段 /// public string Model { get; set; } /// /// 帮助信息 /// public string Help { get; set; } /// /// 校验 /// public Front_Rule[] Rules { get; set; } public virtual ViewDynamic Dynamic { get { return null; } } } }